Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
15 Zeilen
394 B
JavaScript
15 Zeilen
394 B
JavaScript
export default Ember.Route.extend({
|
|
beforeModel() {
|
|
const appModel = this.modelFor('custom');
|
|
if (appModel.completed) {
|
|
this.set('completed', true);
|
|
} else if (appModel.start) {
|
|
this.replaceWith('custom.step', appModel.start);
|
|
}
|
|
},
|
|
|
|
setupController(controller) {
|
|
const completed = this.get('completed');
|
|
controller.set('completed', completed);
|
|
}
|
|
});
|