mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
10 lines
255 B
JavaScript
10 lines
255 B
JavaScript
import ApplicationAdapter from 'ghost/adapters/application';
|
|
|
|
var UserAdapter = ApplicationAdapter.extend({
|
|
find: function (store, type, id) {
|
|
return this.findQuery(store, type, {id: id, status: 'all'});
|
|
}
|
|
});
|
|
|
|
export default UserAdapter;
|