affe6743e5
refs: https://github.com/TryGhost/Team/issues/1145 - this should allow us to remove the /products endpoint in v5 It avoids: - `kg-product-card`, that really is meant to say product - `product-cadence` on offers Co-authored-by: Rishabh <zrishabhgarg@gmail.com>
22 lines
528 B
JavaScript
22 lines
528 B
JavaScript
import {paginatedResponse} from '../utils';
|
|
|
|
export default function mockOffers(server) {
|
|
server.post('/offers/');
|
|
|
|
server.get('/offers/', paginatedResponse('offers'));
|
|
|
|
server.get('/offers/:id/', function ({offers}, {params}) {
|
|
let {id} = params;
|
|
let tier = offers.find(id);
|
|
|
|
return tier || new Response(404, {}, {
|
|
errors: [{
|
|
type: 'NotFoundError',
|
|
message: 'Offer not found.'
|
|
}]
|
|
});
|
|
});
|
|
|
|
server.put('/offers/:id/');
|
|
}
|