2020-05-12 20:01:26 +02:00
|
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
2021-09-09 08:07:12 +02:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2023-09-14 15:47:52 +02:00
|
|
|
import { inject as service } from "@ember/service";
|
2020-04-15 04:10:39 +02:00
|
|
|
|
2020-05-12 20:01:26 +02:00
|
|
|
export default DiscourseRoute.extend({
|
2023-09-14 15:42:12 +02:00
|
|
|
router: service(),
|
|
|
|
|
2020-04-15 04:10:39 +02:00
|
|
|
model() {
|
2021-09-09 08:07:12 +02:00
|
|
|
return ajax(`/admin/wizards/wizard`);
|
2020-04-15 04:10:39 +02:00
|
|
|
},
|
2020-05-12 20:01:26 +02:00
|
|
|
|
2020-04-15 04:10:39 +02:00
|
|
|
setupController(controller, model) {
|
2021-09-09 08:07:12 +02: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 15:42:12 +02:00
|
|
|
this.router.transitionTo("adminWizardsLogsShow", wizardId);
|
2021-09-09 08:07:12 +02:00
|
|
|
},
|
2021-03-28 11:06:49 +02:00
|
|
|
},
|
|
|
|
});
|