mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 02:23:40 +08:00
27 lines
659 B
JavaScript
27 lines
659 B
JavaScript
import getUrl from "discourse-common/lib/get-url";
|
|
import Controller from "@ember/controller";
|
|
import { action } from "@ember/object";
|
|
|
|
export default Controller.extend({
|
|
wizard: null,
|
|
step: null,
|
|
|
|
@action
|
|
goNext(response) {
|
|
const next = this.get("step.next");
|
|
|
|
if (response?.refresh_required) {
|
|
document.location = getUrl(`/wizard/steps/${next}`);
|
|
} else if (response?.success && next) {
|
|
this.transitionToRoute("wizard.step", next);
|
|
} else if (response?.success) {
|
|
this.transitionToRoute("discovery.latest");
|
|
}
|
|
},
|
|
|
|
@action
|
|
goBack() {
|
|
this.transitionToRoute("wizard.step", this.step.previous);
|
|
},
|
|
});
|