14 lines
486 B
JavaScript
Raw Normal View History

'use strict';
module.exports = {
2021-06-28 12:34:29 +02:00
CONTENT_TYPE_SECTION: 'contentTypes',
SUPER_ADMIN_CODE: 'strapi-super-admin',
EDITOR_CODE: 'strapi-editor',
AUTHOR_CODE: 'strapi-author',
READ_ACTION: 'plugins::content-manager.explorer.read',
CREATE_ACTION: 'plugins::content-manager.explorer.create',
UPDATE_ACTION: 'plugins::content-manager.explorer.update',
DELETE_ACTION: 'plugins::content-manager.explorer.delete',
PUBLISH_ACTION: 'plugins::content-manager.explorer.publish',
};