mirror of
https://github.com/discourse/discourse.git
synced 2025-05-25 09:57:25 +08:00
UX: Default user facing routes to /g
instead of /groups
. (#7042)
This commit is contained in:
@ -48,7 +48,7 @@ export default Ember.Controller.extend(CanCheckEmails, {
|
||||
return automaticGroups
|
||||
.map(group => {
|
||||
const name = Ember.String.htmlSafe(group.name);
|
||||
return `<a href="/groups/${name}">${name}</a>`;
|
||||
return `<a href="/g/${name}">${name}</a>`;
|
||||
})
|
||||
.join(", ");
|
||||
},
|
||||
|
Reference in New Issue
Block a user