@dbbs/strapi-stripe-payment
Version:
Strapi integration plugin for Stripe payment system
33 lines (32 loc) • 540 B
text/typescript
export 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: {}
}
]