mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:16:08 +08:00
26 lines
554 B
JavaScript
26 lines
554 B
JavaScript
import Controller from "@ember/controller";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
export default Controller.extend({
|
|
@discourseComputed
|
|
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");
|
|
},
|
|
},
|
|
});
|