Overview
The «Publish Control» feature allows users to manage all things publishing and distribution of documents.
Configuration
You can enable and configure the «Publish Control» per Content-Type: In it’s most basic form, Publish Control allows for immediate publish and unpublish only:
{
handle: 'myArticle',
// ...
publishControl: {}
}
You can enable the single capabilities per content-type:
{
handle: 'myArticle',
// ...
publishControl: {
publishSchedule: true, // default: false
unpublishSchedule: true, // default: false
}
}