mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
25 lines
498 B
JavaScript
25 lines
498 B
JavaScript
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.Controller.extend({
|
|
@computed
|
|
adminRoutes: function() {
|
|
return this.model
|
|
.map(p => {
|
|
if (p.get("enabled")) {
|
|
return p.admin_route;
|
|
}
|
|
})
|
|
.compact();
|
|
},
|
|
|
|
actions: {
|
|
clearFilter() {
|
|
this.setProperties({ filter: "", onlyOverridden: false });
|
|
},
|
|
|
|
toggleMenu() {
|
|
$(".admin-detail").toggleClass("mobile-closed mobile-open");
|
|
}
|
|
}
|
|
});
|