UNPKG

strapi-plugin-publisher

Version:

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

40 lines (39 loc) 588 B
export default { kind: 'collectionType', collectionName: 'actions', info: { singularName: 'action', pluralName: 'actions', displayName: 'actions', }, pluginOptions: { 'content-manager': { visible: false, }, 'content-type-builder': { visible: false, }, }, options: { draftAndPublish: false, comment: '', }, attributes: { executeAt: { type: 'datetime', required: true, }, mode: { type: 'string', required: true, }, entityId: { type: 'string', required: true, }, entitySlug: { type: 'string', required: true, }, }, }