Refactor routes

* Add specific dashboard route
* Port application route to Octane
* Fetch/sync contributors in application route, but only sync
  contributions in dashboard route for now
This commit is contained in:
2020-06-18 15:25:03 +02:00
parent 174073fc42
commit 769317777c
3 changed files with 47 additions and 22 deletions
+11
View File
@@ -0,0 +1,11 @@
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
module('Unit | Route | dashboard', function(hooks) {
setupTest(hooks);
test('it exists', function(assert) {
let route = this.owner.lookup('route:dashboard');
assert.ok(route);
});
});