diff --git a/app/mirage/config.js b/app/mirage/config.js index 929ea8a..c03b469 100644 --- a/app/mirage/config.js +++ b/app/mirage/config.js @@ -10,7 +10,10 @@ export function testConfig() { this.namespace = '/api/hymenobacter'; this.timing = 0; + this.get('/users'); + this.post('/users'); this.get('/users/:id'); + this.put('/users/:id'); this.get('/species'); this.post('/species'); diff --git a/app/pods/protected/users/index/template.hbs b/app/pods/protected/users/index/template.hbs index adb5b55..5354e95 100644 --- a/app/pods/protected/users/index/template.hbs +++ b/app/pods/protected/users/index/template.hbs @@ -1,5 +1,5 @@

{{genus-name}} Users

-

Total users: {{model.length}}

+

Total users: {{model.length}}

diff --git a/app/pods/protected/users/user-form/template.hbs b/app/pods/protected/users/user-form/template.hbs index c6209a9..e7a8b02 100644 --- a/app/pods/protected/users/user-form/template.hbs +++ b/app/pods/protected/users/user-form/template.hbs @@ -4,7 +4,7 @@
- {{input value=user.name}} + {{input value=user.name class="user-name"}}
@@ -33,7 +33,7 @@ Cancel {{#if user.hasDirtyAttributes}} - {{/if}} diff --git a/app/pods/users/new/template.hbs b/app/pods/users/new/template.hbs index d6e81c5..e8e6e2c 100644 --- a/app/pods/users/new/template.hbs +++ b/app/pods/users/new/template.hbs @@ -6,22 +6,22 @@