2021-05-24 14:46:22 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const cmPermissions = [
|
|
|
|
{
|
|
|
|
id: 2817,
|
2021-08-06 18:09:49 +02:00
|
|
|
action: 'plugin::content-manager.single-types.configure-view',
|
2021-05-24 14:46:22 +02:00
|
|
|
subject: null,
|
|
|
|
properties: {},
|
|
|
|
conditions: [],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2818,
|
2021-08-06 18:09:49 +02:00
|
|
|
action: 'plugin::content-manager.collection-types.configure-view',
|
2021-05-24 14:46:22 +02:00
|
|
|
subject: null,
|
|
|
|
properties: {},
|
|
|
|
conditions: [],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2819,
|
2021-08-06 18:09:49 +02:00
|
|
|
action: 'plugin::content-manager.components.configure-layout',
|
2021-05-24 14:46:22 +02:00
|
|
|
subject: null,
|
|
|
|
properties: {},
|
|
|
|
conditions: [],
|
|
|
|
},
|
|
|
|
{
|
2021-08-06 18:09:49 +02:00
|
|
|
action: 'plugin::content-manager.explorer.create',
|
2021-05-24 14:46:22 +02:00
|
|
|
subject: 'foo',
|
|
|
|
properties: {
|
|
|
|
fields: ['f1'],
|
|
|
|
},
|
|
|
|
conditions: [],
|
|
|
|
},
|
|
|
|
{
|
2021-08-06 18:09:49 +02:00
|
|
|
action: 'plugin::content-manager.explorer.create',
|
2021-05-24 14:46:22 +02:00
|
|
|
subject: 'foo',
|
|
|
|
properties: {
|
|
|
|
fields: ['f2'],
|
|
|
|
},
|
|
|
|
conditions: [],
|
|
|
|
},
|
|
|
|
{
|
2021-08-06 18:09:49 +02:00
|
|
|
action: 'plugin::content-manager.explorer.read',
|
2021-05-24 14:46:22 +02:00
|
|
|
subject: 'foo',
|
|
|
|
properties: {
|
|
|
|
fields: ['f1'],
|
|
|
|
},
|
|
|
|
conditions: [],
|
|
|
|
},
|
|
|
|
{
|
2021-08-06 18:09:49 +02:00
|
|
|
action: 'plugin::content-manager.explorer.delete',
|
2021-05-24 14:46:22 +02:00
|
|
|
subject: 'bar',
|
|
|
|
},
|
|
|
|
{
|
2021-08-06 18:09:49 +02:00
|
|
|
action: 'plugin::content-manager.explorer.update',
|
2021-05-24 14:46:22 +02:00
|
|
|
subject: 'bar',
|
|
|
|
properties: {
|
|
|
|
fields: ['f1'],
|
|
|
|
},
|
|
|
|
conditions: [],
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = cmPermissions;
|