2020-05-12 14:01:26 -04:00
|
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
2021-09-09 14:07:12 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2023-09-14 14:47:52 +01:00
|
|
|
import { inject as service } from "@ember/service";
|
2020-04-15 12:10:39 +10:00
|
|
|
|
2020-05-12 14:01:26 -04:00
|
|
|
export default DiscourseRoute.extend({
|
2023-09-14 14:42:12 +01:00
|
|
|
router: service(),
|
|
|
|
|
2020-04-15 12:10:39 +10:00
|
|
|
model() {
|
2021-09-09 14:07:12 +08:00
|
|
|
return ajax(`/admin/wizards/wizard`);
|
2020-04-15 12:10:39 +10:00
|
|
|
},
|
2020-05-12 14:01:26 -04:00
|
|
|
|
2020-04-15 12:10:39 +10:00
|
|
|
setupController(controller, model) {
|
2021-09-09 14:07:12 +08:00
|
|
|
const showParams = this.paramsFor("adminWizardsLogsShow");
|
|
|
|
|
|
|
|
controller.setProperties({
|
|
|
|
wizardId: showParams.wizardId,
|
|
|
|
wizardList: model.wizard_list,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
changeWizard(wizardId) {
|
|
|
|
this.controllerFor("adminWizardsLogs").set("wizardId", wizardId);
|
2023-09-14 14:42:12 +01:00
|
|
|
this.router.transitionTo("adminWizardsLogsShow", wizardId);
|
2021-09-09 14:07:12 +08:00
|
|
|
},
|
2021-03-28 20:06:49 +11:00
|
|
|
},
|
|
|
|
});
|