mirror of
https://github.com/discourse/discourse.git
synced 2025-05-24 14:12:10 +08:00
Rename .js.es6
to .js
in the admin application
This commit is contained in:
25
app/assets/javascripts/admin/controllers/admin-plugins.js
Normal file
25
app/assets/javascripts/admin/controllers/admin-plugins.js
Normal file
@ -0,0 +1,25 @@
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
import Controller from "@ember/controller";
|
||||
|
||||
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");
|
||||
}
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user