Ghost/ghost/admin/mirage/models/user.js
Kevin Ansfield ea8b4277b0 add dropdown filters for post type, author, and tag (#554)
refs TryGhost/Ghost#7860
- removes post type filter links
- adds dropdown filters for post type, author, and tag
- replaces custom refresh on query params change with Ember's standard `refreshModel` config
2017-03-02 12:35:09 -06:00

11 lines
268 B
JavaScript

import {Model, hasMany} from 'ember-cli-mirage';
export default Model.extend({
// used by the serializer to determine whether
// or not to include the post count
postCount: false,
roles: hasMany(),
posts: hasMany('post', {inverse: 'author'})
});