1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/views/users-list.js
Jason Williams 1d38904636 Clean up Ember router map
No Issue
- Switch resources to routes.
- No longer nest "settings" routes so the router reflects
  the way the templates are rendered.
- Remove renderTemplate override from settings routes.
- Remove unneeded routes, controllers, and views.
- Adjust users page so that infinite scroll loading of users works
  and markup remains the same for Zelda styling.
2015-05-26 16:12:12 -05:00

7 lines
265 B
JavaScript

import Ember from 'ember';
import PaginationViewMixin from 'ghost/mixins/pagination-view-infinite-scroll';
export default Ember.View.extend(PaginationViewMixin, {
tagName: 'section',
classNames: ['js-users-list-view', 'view-content', 'settings-users']
});