UNPKG

strapi-plugin-publisher

Version:

A plugin for Strapi Headless CMS that provides the ability to schedule publishing for any content type.

23 lines (22 loc) 358 B
export default [ { method: 'GET', path: '/actions', handler: 'actionController.find', }, { method: 'POST', path: '/actions', handler: 'actionController.create', }, { method: 'DELETE', path: '/actions/:id', handler: 'actionController.delete', }, { method: 'PUT', path: '/actions/:id', handler: 'actionController.update', }, ];