mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 19:58:34 +08:00
fcb4e5a1a1
Co-authored-by: David Taylor <david@taylorhq.com>
25 lines
565 B
JavaScript
25 lines
565 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) {
|
|
this.transitionToRoute("wizard.step", next);
|
|
}
|
|
},
|
|
|
|
@action
|
|
goBack() {
|
|
this.transitionToRoute("wizard.step", this.step.previous);
|
|
},
|
|
});
|