Roughing in user admin

This commit is contained in:
Matthew Dillon 2015-09-09 14:23:25 -07:00
parent 3b3f8cc691
commit be8a842c67
5 changed files with 23 additions and 1 deletions

View file

@ -0,0 +1,8 @@
import Ember from 'ember';
export default Ember.Route.extend({
model: function() {
return this.store.findAll('user');
},
});

View file

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