mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
31e4c9f753
closes #6095 - implements custom user adapter for the `/team/:slug/` route - abstracts slug-url behavior into a mixin (used in /settings/tags/ as well) - adds unit tests for both tag and user adapters
24 lines
809 B
JavaScript
24 lines
809 B
JavaScript
import ApplicationAdapter from 'ghost/adapters/application';
|
|
import SlugUrl from 'ghost/mixins/slug-url';
|
|
|
|
export default ApplicationAdapter.extend(SlugUrl, {
|
|
find: function (store, type, id) {
|
|
return this.findQuery(store, type, {id: id, status: 'all'});
|
|
},
|
|
|
|
// TODO: This is needed because the API currently expects you to know the
|
|
// status of the record before retrieving by ID. Quick fix is to always
|
|
// include status=all in the query
|
|
findRecord: function (store, type, id, snapshot) {
|
|
let url = this.buildIncludeURL(store, type.modelName, id, snapshot, 'findRecord');
|
|
|
|
url += '&status=all';
|
|
|
|
return this.ajax(url, 'GET');
|
|
},
|
|
|
|
findAll: function (store, type, id) {
|
|
return this.query(store, type, {id: id, status: 'all'});
|
|
}
|
|
});
|