2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

FEATURE: Only show enabled plugins in the sidebar

This commit is contained in:
Kane York 2015-07-02 10:59:15 -07:00
parent af042ffe5e
commit 3fdbf287de

View file

@ -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()
});