mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
FEATURE: Only show enabled plugins in the sidebar
This commit is contained in:
parent
af042ffe5e
commit
3fdbf287de
|
@ -1,6 +1,10 @@
|
|||
export default Ember.ArrayController.extend({
|
||||
|
||||
adminRoutes: function() {
|
||||
return this.get('model').map(p => p.admin_route).compact();
|
||||
return this.get('model').map(function(p) {
|
||||
if (p.get('enabled')) {
|
||||
return p.admin_route;
|
||||
}
|
||||
}).compact();
|
||||
}.property()
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user