2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/app/assets/javascripts/wizard/router.js.es6
2018-06-15 17:03:24 +02:00

12 lines
275 B
JavaScript

import getUrl from "discourse-common/lib/get-url";
const Router = Ember.Router.extend({
rootURL: getUrl("/wizard/"),
location: Ember.testing ? "none" : "history"
});
Router.map(function() {
this.route("step", { path: "/steps/:step_id" });
});
export default Router;