UNPKG

strapi-plugin-publisher

Version:

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

13 lines (11 loc) 248 B
import getPluginService from '../utils/getPluginService'; export default { /** * Fetch the current plugin settings * * @return {Array} actions */ async find(ctx) { ctx.send({ data: getPluginService('settingsService').get() }); }, };