2020-03-21 18:30:11 +01:00
|
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
2021-03-28 11:06:49 +02:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2017-10-05 02:36:46 +02:00
|
|
|
|
2020-03-21 18:30:11 +01:00
|
|
|
export default DiscourseRoute.extend({
|
2017-10-05 02:36:46 +02:00
|
|
|
model() {
|
2020-04-13 14:17:22 +02:00
|
|
|
return ajax(`/admin/wizards/wizard`);
|
2017-10-05 02:36:46 +02:00
|
|
|
},
|
2021-03-28 11:06:49 +02:00
|
|
|
|
2020-04-13 14:17:22 +02:00
|
|
|
setupController(controller, model) {
|
2021-03-28 11:06:49 +02:00
|
|
|
const showParams = this.paramsFor("adminWizardsSubmissionsShow");
|
|
|
|
|
2020-04-13 14:17:22 +02:00
|
|
|
controller.setProperties({
|
|
|
|
wizardId: showParams.wizardId,
|
2021-03-28 11:06:49 +02:00
|
|
|
wizardList: model.wizard_list,
|
|
|
|
});
|
2020-04-13 14:17:22 +02:00
|
|
|
},
|
2021-03-28 11:06:49 +02:00
|
|
|
|
2020-04-13 14:17:22 +02:00
|
|
|
actions: {
|
|
|
|
changeWizard(wizardId) {
|
2021-03-28 11:06:49 +02:00
|
|
|
this.controllerFor("adminWizardsSubmissions").set("wizardId", wizardId);
|
|
|
|
this.transitionTo("adminWizardsSubmissionsShow", wizardId);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|