15 lines
412 B
JavaScript
15 lines
412 B
JavaScript
'use strict';
|
|
|
|
const PLUGIN_ID = 'content-manager';
|
|
const PERMISSIONS = [
|
|
'plugin::content-manager.explorer.create',
|
|
'plugin::content-manager.explorer.read',
|
|
'plugin::content-manager.explorer.update',
|
|
'plugin::content-manager.explorer.delete',
|
|
'plugin::content-manager.explorer.publish'
|
|
];
|
|
|
|
exports.PERMISSIONS = PERMISSIONS;
|
|
exports.PLUGIN_ID = PLUGIN_ID;
|
|
//# sourceMappingURL=plugin.js.map
|