Ghost/core/client/app/adapters/user.js

8 lines
223 B
JavaScript
Raw Normal View History

import ApplicationAdapter from 'ghost/adapters/application';
export default ApplicationAdapter.extend({
find: function (store, type, id) {
return this.findQuery(store, type, {id: id, status: 'all'});
}
});