-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathUserPermissions.php
More file actions
46 lines (43 loc) · 1.54 KB
/
UserPermissions.php
File metadata and controls
46 lines (43 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
declare(strict_types=1);
/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Commercial License (PCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PCL
*/
namespace Pimcore\Bundle\StudioBackendBundle\Util\Constant;
/**
* @internal
*/
enum UserPermissions: string
{
case PERMISSIONS_CATEGORY = 'Pimcore Studio Backend Bundle';
case DEFINITIONS_TABLE = 'users_permission_definitions';
case ASSETS = 'assets';
case DATA_OBJECTS = 'objects';
case DOCUMENTS = 'documents';
case ELEMENT_TYPE_PERMISSION = 'ELEMENT_TYPE_PERMISSION';
case EMAILS = 'emails';
case GDPR = 'gdpr_data_extractor';
case NOTES_EVENTS = 'notes_events';
case NOTIFICATIONS = 'notifications';
case NOTIFICATIONS_SEND = 'notifications_send';
case OBJECTS_SORT_METHOD = 'objects_sort_method';
case PERSPECTIVE_EDITOR = 'perspective_editor';
case PIMCORE_ADMIN = 'ROLE_PIMCORE_ADMIN';
case PIMCORE_USER = 'ROLE_PIMCORE_USER';
case PREDEFINED_PROPERTIES = 'predefined_properties';
case TAGS_CONFIGURATION = 'tags_configuration';
case TAGS_ASSIGNMENT = 'tags_assignment';
case TAGS_SEARCH = 'tags_search';
case THUMBNAILS = 'thumbnails';
case USER_MANAGEMENT = 'users';
case WIDGET_EDITOR = 'perspective_widget_editor';
}