mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 04:13:30 +03:00
9 lines
194 B
JavaScript
9 lines
194 B
JavaScript
|
var UsersIndexRoute = Ember.Route.extend(Ember.SimpleAuth.AuthenticatedRouteMixin, {
|
||
|
|
||
|
model: function () {
|
||
|
return this.store.find('user');
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default UsersIndexRoute;
|