UNPKG

@dbbs/strapi-stripe-payment

Version:
35 lines (34 loc) 743 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = [ { method: 'POST', path: '/admin/products', handler: 'product.create', config: {} }, { method: 'GET', path: '/admin/products/:id', handler: 'product.getProductById', config: {} }, { method: 'GET', path: '/admin/products', handler: 'product.getProducts', config: {} }, { method: 'PUT', path: '/admin/products/:id', handler: 'product.update', config: {} }, { method: 'DELETE', path: '/admin/products/:id', handler: 'product.delete', config: {} } ];