mirror of
https://github.com/strapi/strapi.git
synced 2025-10-30 01:17:28 +00:00
14 lines
336 B
JavaScript
14 lines
336 B
JavaScript
'use strict';
|
|
|
|
const ACTIONS = {
|
|
read: 'plugins::content-manager.explorer.read',
|
|
create: 'plugins::content-manager.explorer.create',
|
|
edit: 'plugins::content-manager.explorer.update',
|
|
delete: 'plugins::content-manager.explorer.delete',
|
|
publish: 'plugins::content-manager.explorer.publish',
|
|
};
|
|
|
|
module.exports = {
|
|
ACTIONS,
|
|
};
|