mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
21 lines
473 B
JavaScript
21 lines
473 B
JavaScript
import getUrl from 'discourse-common/lib/get-url';
|
|
|
|
export default Ember.Controller.extend({
|
|
wizard: null,
|
|
step: null,
|
|
|
|
actions: {
|
|
goNext(response) {
|
|
const next = this.get('step.next');
|
|
if (response.refresh_required) {
|
|
document.location = getUrl(`/wizard/steps/${next}`);
|
|
} else {
|
|
this.transitionToRoute('step', next);
|
|
}
|
|
},
|
|
goBack() {
|
|
this.transitionToRoute('step', this.get('step.previous'));
|
|
},
|
|
}
|
|
});
|