18 lines
566 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',
2021-08-06 18:09:49 +02:00
READ_ACTION: 'plugin::content-manager.explorer.read',
CREATE_ACTION: 'plugin::content-manager.explorer.create',
UPDATE_ACTION: 'plugin::content-manager.explorer.update',
DELETE_ACTION: 'plugin::content-manager.explorer.delete',
PUBLISH_ACTION: 'plugin::content-manager.explorer.publish',
2021-08-31 15:48:14 +02:00
API_TOKEN_TYPE: {
READ_ONLY: 'read-only',
FULL_ACCESS: 'full-access',
},
};