2017-09-23 04:34:07 +02:00
|
|
|
import CustomWizard from '../models/custom-wizard';
|
|
|
|
|
|
|
|
export default Discourse.Route.extend({
|
|
|
|
model() {
|
|
|
|
return CustomWizard.findAll();
|
|
|
|
},
|
|
|
|
|
2017-10-06 04:59:02 +02:00
|
|
|
afterModel(model, transition) {
|
|
|
|
if (transition.intent.name !== 'adminWizard' && model.length > 0) {
|
|
|
|
this.transitionTo('adminWizard', model[0].id);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-09-23 04:34:07 +02:00
|
|
|
setupController(controller, model){
|
|
|
|
controller.set("model", model.toArray());
|
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
willTransition(transition) {
|
|
|
|
if (transition.intent.name === 'adminWizardsCustom') {
|
|
|
|
this.refresh();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|