Upgrade to latest Ember, etc.

This commit is contained in:
2020-05-09 16:27:06 +02:00
parent 67e3c9a7c3
commit 065c635580
28 changed files with 8718 additions and 2653 deletions
+4 -6
View File
@@ -1,10 +1,10 @@
import EmberRouter from '@ember/routing/router';
import config from './config/environment';
const Router = EmberRouter.extend({
location: config.locationType,
rootURL: config.rootURL
});
export default class Router extends EmberRouter {
location = config.locationType;
rootURL = config.rootURL;
}
Router.map(function() {
this.route('dashboard', function() {
@@ -33,5 +33,3 @@ Router.map(function() {
this.route('complete');
});
});
export default Router;