mirror of
https://github.com/discourse/discourse.git
synced 2025-02-17 08:45:05 +00:00
FIX: don't hide "public invisible" groups from groups on user page
This commit is contained in:
parent
a5b25ad2af
commit
4919ec4c44
@ -1,6 +1,6 @@
|
||||
const AdminUser = Discourse.User.extend({
|
||||
|
||||
customGroups: Em.computed.filter("groups", (g) => !g.automatic && g.visible && Discourse.Group.create(g)),
|
||||
customGroups: Em.computed.filter("groups", (g) => !g.automatic && Discourse.Group.create(g)),
|
||||
automaticGroups: Em.computed.filter("groups", (g) => g.automatic && Discourse.Group.create(g)),
|
||||
|
||||
generateApiKey() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user