Ghost/ghost/admin/app/adapters/offer.js
Rishabh 31e4b77525 Added initial wiring for offer screens
refs https://github.com/TryGhost/Team/issues/1084
refs https://github.com/TryGhost/Team/issues/1085

- adds model/validator/config and router for offers
- updates template for offer list and detail with dynamic values
- updated route handling for offer list and creation
- wires offer data from API to list and detail pages
2021-10-06 20:01:25 +05:30

22 lines
595 B
JavaScript

import ApplicationAdapter from 'ghost-admin/adapters/application';
export default ApplicationAdapter.extend({
queryRecord(store, type, query) {
if (query && query.id) {
let {id} = query;
delete query.id;
let url = this.buildURL(type.modelName, id, query, 'findRecord');
return this.ajax(url, 'GET', {data: query});
}
return this._super(...arguments);
},
urlForDeleteRecord() {
let url = this._super(...arguments);
let parsedUrl = new URL(url);
return parsedUrl.toString();
}
});