mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
15 lines
234 B
JavaScript
15 lines
234 B
JavaScript
import Route from "@ember/routing/route";
|
|
import { findWizard } from "wizard/models/wizard";
|
|
|
|
export default Route.extend({
|
|
model() {
|
|
return findWizard();
|
|
},
|
|
|
|
actions: {
|
|
refresh() {
|
|
this.refresh();
|
|
},
|
|
},
|
|
});
|