mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
46e281241e
refs https://github.com/TryGhost/Team/issues/712 closes https://github.com/TryGhost/Team/issues/717 The product API is updated to support `monthly/yearly_price` on each product instead of using list of stripe prices. This change updates the handling of membership settings to use the updated API instead of `stripe_prices` property.
22 lines
595 B
JavaScript
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();
|
|
}
|
|
});
|