mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 03:43:38 +08:00
35 lines
824 B
JavaScript
35 lines
824 B
JavaScript
import Route from "@ember/routing/route";
|
|
|
|
export default class AdminCustomizeThemesShowSchemaRoute extends Route {
|
|
async model(params) {
|
|
const theme = this.modelFor("adminCustomizeThemesShow");
|
|
const setting = theme.settings.findBy("setting", params.setting_name);
|
|
|
|
await setting.loadMetadata(theme.id);
|
|
|
|
return {
|
|
theme,
|
|
setting,
|
|
};
|
|
}
|
|
|
|
setupController() {
|
|
super.setupController(...arguments);
|
|
this.controllerFor("adminCustomizeThemes").set("editingTheme", true);
|
|
|
|
this.controllerFor("adminCustomizeThemes.show").set(
|
|
"editingThemeSetting",
|
|
true
|
|
);
|
|
}
|
|
|
|
deactivate() {
|
|
this.controllerFor("adminCustomizeThemes").set("editingTheme", false);
|
|
|
|
this.controllerFor("adminCustomizeThemes.show").set(
|
|
"editingThemeSetting",
|
|
false
|
|
);
|
|
}
|
|
}
|