discourse/app/assets/javascripts/admin/addon/controllers/admin-plugins.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
554 B
JavaScript
Raw Normal View History

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();
},
2018-07-03 11:14:53 +08:00
actions: {
clearFilter() {
this.setProperties({ filter: "", onlyOverridden: false });
},
toggleMenu() {
$(".admin-detail").toggleClass("mobile-closed mobile-open");
},
},
});