mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
export default Ember.Controller.extend({
|
|
adminRoutes: function() {
|
|
return this.get('model').map(p => {
|
|
if (p.get('enabled')) {
|
|
return p.admin_route;
|
|
}
|
|
}).compact();
|
|
}.property()
|
|
});
|