2020-03-21 18:30:11 +01:00
|
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
2020-04-13 14:17:22 +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
|
|
|
},
|
2020-04-13 14:17:22 +02:00
|
|
|
|
|
|
|
setupController(controller, model) {
|
|
|
|
const showParams = this.paramsFor('adminWizardsSubmissionsShow');
|
|
|
|
|
|
|
|
controller.setProperties({
|
|
|
|
wizardId: showParams.wizardId,
|
|
|
|
wizardList: model.wizard_list
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
changeWizard(wizardId) {
|
|
|
|
this.controllerFor('adminWizardsSubmissions').set('wizardId', wizardId);
|
|
|
|
this.transitionTo('adminWizardsSubmissionsShow', wizardId);
|
|
|
|
}
|
2017-10-05 02:36:46 +02:00
|
|
|
}
|
2020-04-13 14:17:22 +02:00
|
|
|
});
|