@dbbs/strapi-stripe-payment
Version:
Strapi integration plugin for Stripe payment system
35 lines (34 loc) • 721 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = [
{
method: 'POST',
path: '/admin/plans',
handler: 'plan.create',
config: {}
},
{
method: 'GET',
path: '/admin/plans/currencies',
handler: 'plan.getCurrencies',
config: {}
},
{
method: 'GET',
path: '/admin/plans/:id',
handler: 'plan.getPlanById',
config: {}
},
{
method: 'GET',
path: '/admin/plans',
handler: 'plan.getPlans',
config: {}
},
{
method: 'DELETE',
path: '/admin/plans/:id',
handler: 'plan.delete',
config: {}
}
];