Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
10 Zeilen
187 B
Text
10 Zeilen
187 B
Text
|
import Route from "@ember/routing/route";
|
||
|
|
||
|
export default Route.extend({
|
||
|
beforeModel(transition) {
|
||
|
if (transition.intent.params) {
|
||
|
this.transitionTo("wizard");
|
||
|
}
|
||
|
},
|
||
|
});
|