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
JavaScript
'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',
},
];