2020-04-13 14:17:22 +02:00
|
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
2021-09-24 11:58:42 +02:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2020-04-13 14:17:22 +02:00
|
|
|
|
|
|
|
export default DiscourseRoute.extend({
|
2021-09-24 11:58:42 +02:00
|
|
|
model() {
|
2021-10-19 14:49:06 +02:00
|
|
|
return ajax("/admin/wizards");
|
2021-09-24 11:58:42 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
setupController(controller, model) {
|
2021-10-19 14:49:06 +02:00
|
|
|
controller.set("api_section", model.api_section);
|
2021-11-01 14:52:29 +01:00
|
|
|
|
|
|
|
if (model.active_notice_count) {
|
|
|
|
controller.set("activeNoticeCount", model.active_notice_count);
|
|
|
|
}
|
|
|
|
if (model.featured_notices) {
|
|
|
|
controller.set("featuredNotices", model.featured_notices);
|
|
|
|
}
|
|
|
|
|
|
|
|
controller.subscribe();
|
2021-09-24 11:58:42 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
afterModel(model, transition) {
|
2020-04-13 14:17:22 +02:00
|
|
|
if (transition.targetName === "adminWizards.index") {
|
2021-03-28 11:06:49 +02:00
|
|
|
this.transitionTo("adminWizardsWizard");
|
2020-04-13 14:17:22 +02:00
|
|
|
}
|
2021-11-17 13:48:11 +01:00
|
|
|
},
|
2021-03-28 11:06:49 +02:00
|
|
|
});
|