mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
26 lines
589 B
JavaScript
26 lines
589 B
JavaScript
import Route from "@ember/routing/route";
|
|
import showModal from "discourse/lib/show-modal";
|
|
|
|
export default Route.extend({
|
|
model() {
|
|
return this.store.findAll("theme");
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
this._super(controller, model);
|
|
controller.set("editingTheme", false);
|
|
},
|
|
|
|
actions: {
|
|
installModal() {
|
|
showModal("admin-install-theme", { admin: true });
|
|
},
|
|
|
|
addTheme(theme) {
|
|
this.refresh();
|
|
theme.setProperties({ recentlyInstalled: true });
|
|
this.transitionTo("adminCustomizeThemes.show", theme.get("id"));
|
|
}
|
|
}
|
|
});
|