Sign up via GitHub #142

Merged
raucao merged 14 commits from feature/signup into master 2019-08-29 10:52:04 +00:00
4 changed files with 17 additions and 0 deletions
Showing only changes of commit 0a71d7ad91 - Show all commits
+1
View File
@@ -26,6 +26,7 @@ Router.map(function() {
this.route('new');
this.route('edit', { path: ':id/edit' });
});
this.route('signup');
});
export default Router;
+4
View File
@@ -0,0 +1,4 @@
import Route from '@ember/routing/route';
export default Route.extend({
});
+1
View File
@@ -0,0 +1 @@
{{outlet}}
+11
View File
@@ -0,0 +1,11 @@
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
module('Unit | Route | signup', function(hooks) {
setupTest(hooks);
test('it exists', function(assert) {
let route = this.owner.lookup('route:signup');
assert.ok(route);
});
});