Remove dead route

This commit is contained in:
Matthew Ryan Dillon 2015-10-20 15:03:28 -07:00
parent 7051180e49
commit 1f163737da
2 changed files with 0 additions and 11 deletions

View file

@ -1,8 +0,0 @@
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

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