WIP New user signup

This commit is contained in:
Matthew Dillon 2015-06-23 12:08:59 -08:00
parent 19359c341d
commit a8fdff6be0
11 changed files with 79 additions and 4 deletions

View file

@ -0,0 +1,8 @@
import Ember from 'ember';
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
export default Ember.Route.extend(AuthenticatedRouteMixin, {
model: function() {
return this.store.findAll('user');
}
});

View file

@ -0,0 +1,3 @@
{{#each model as |user|}}
{{user.email}}<br>
{{/each}}