Skip to content
Snippets Groups Projects
Commit a16f002f authored by fkiefer's avatar fkiefer
Browse files

OO-2635 fix businessgroup email link

parent 1fcf741c
No related branches found
No related tags found
No related merge requests found
......@@ -469,7 +469,7 @@ public class MembersAvatarDisplayRunController extends FormBasicController {
// Build REST URL to business group,
StringBuilder groupLink = new StringBuilder();
groupLink.append(Settings.getServerContextPathURI())
.append("/auth/BusinessGroup/").append(businessGroup.getKey());
.append("/url/BusinessGroup/").append(businessGroup.getKey());
return translate("email.body.template", new String[]{groupName, groupLink.toString()});
} else {
String courseName = courseEnv.getCourseTitle();
......
......@@ -300,7 +300,7 @@ public class MembersListDisplayRunController extends BasicController {
// Build REST URL to business group, use hack via group manager to access
StringBuilder groupLink = new StringBuilder();
groupLink.append(Settings.getServerContextPathURI())
.append("/auth/BusinessGroup/").append(businessGroup.getKey());
.append("/url/BusinessGroup/").append(businessGroup.getKey());
return translate("email.body.template", new String[]{groupName, groupLink.toString()});
} else {
String courseName = courseEnv.getCourseTitle();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment