1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/routes/admin-wizards-logs.js.es6

25 Zeilen
611 B
Text

import DiscourseRoute from "discourse/routes/discourse";
import { ajax } from "discourse/lib/ajax";
2020-04-15 04:10:39 +02:00
export default DiscourseRoute.extend({
2020-04-15 04:10:39 +02:00
model() {
return ajax(`/admin/wizards/wizard`);
2020-04-15 04:10:39 +02:00
},
2020-04-15 04:10:39 +02:00
setupController(controller, model) {
const showParams = this.paramsFor("adminWizardsLogsShow");
controller.setProperties({
wizardId: showParams.wizardId,
wizardList: model.wizard_list,
});
},
actions: {
changeWizard(wizardId) {
this.controllerFor("adminWizardsLogs").set("wizardId", wizardId);
this.transitionTo("adminWizardsLogsShow", wizardId);
},
},
});