UNPKG

strapi-plugin-publisher

Version:

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

25 lines (23 loc) 375 B
'use strict'; module.exports = [ { 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', }, ];