0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00
ghost/core/client/app/routes/team/index.js

33 lines
841 B
JavaScript
Raw Normal View History

import AuthenticatedRoute from 'ghost/routes/authenticated';
import CurrentUserSettings from 'ghost/mixins/current-user-settings';
import PaginationRouteMixin from 'ghost/mixins/pagination-route';
import styleBody from 'ghost/mixins/style-body';
export default AuthenticatedRoute.extend(styleBody, CurrentUserSettings, PaginationRouteMixin, {
titleToken: 'Team',
classNames: ['view-team'],
paginationModel: 'user',
paginationSettings: {
status: 'active',
limit: 20
},
model() {
this.loadFirstPage();
return this.store.query('user', {limit: 'all', status: 'invited'}).then(() => {
return this.store.filter('user', () => {
return true;
});
});
},
actions: {
reload() {
this.refresh();
}
}
});