Skip to content

Commit

Permalink
Merge pull request #26 from rwiggins/fix-package-properties-editor-ur…
Browse files Browse the repository at this point in the history
…lbuilder

Make PPE URL builder use ApiCourseId instead of AppId/PackageId
  • Loading branch information
tedwards committed Jan 27, 2017
2 parents 84b2772 + 07a4787 commit 5d802e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CourseService.cs
Expand Up @@ -663,7 +663,7 @@ public string GetPropertyEditorUrl(string courseId, string stylesheetUrl, string
// params as well the actual method params.
IDictionary<string, object> parameterMap = new Dictionary<string, object>();
parameterMap.Add("action", "properties.view");
parameterMap.Add("package", "AppId|" + configuration.AppId + "!PackageId|" + courseId);
parameterMap.Add("package", "ApiCourseId|" + courseId);
parameterMap.Add("appid", configuration.AppId);
parameterMap.Add("ts", DateTime.UtcNow.ToString("yyyyMMddHHmmss"));
if (!String.IsNullOrEmpty(notificationFrameUrl))
Expand Down

0 comments on commit 5d802e4

Please sign in to comment.