Files
kredits-web/app/router.js
T
2018-04-16 18:11:52 +02:00

17 lines
338 B
JavaScript

import EmberRouter from '@ember/routing/router';
import config from './config/environment';
const Router = EmberRouter.extend({
location: config.locationType,
rootURL: config.rootURL
});
Router.map(function() {
this.route('spinner');
this.route('proposals', function() {
this.route('new');
});
});
export default Router;