UNPKG

strapi-plugin-publisher

Version:

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

38 lines (36 loc) 531 B
'use strict'; module.exports = { 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', }, mode: { type: 'string', }, entityId: { type: 'integer', }, entitySlug: { type: 'string', }, }, };