mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:03:13 +08:00
26 lines
622 B
JavaScript
26 lines
622 B
JavaScript
import getUrl from "discourse-common/lib/get-url";
|
|
import Controller from "@ember/controller";
|
|
|
|
export default Controller.extend({
|
|
wizard: null,
|
|
step: null,
|
|
|
|
actions: {
|
|
goNext(response) {
|
|
const next = this.get("step.next");
|
|
if (response.refresh_required) {
|
|
if (this.get("step.id") === "locale") {
|
|
document.location = getUrl(`/wizard/steps/${next}`);
|
|
return;
|
|
} else {
|
|
this.send("refresh");
|
|
}
|
|
}
|
|
this.transitionToRoute("step", next);
|
|
},
|
|
goBack() {
|
|
this.transitionToRoute("step", this.get("step.previous"));
|
|
},
|
|
},
|
|
});
|