-
Notifications
You must be signed in to change notification settings - Fork 1
/
acl.xml
36 lines (36 loc) · 2.08 KB
/
acl.xml
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
<?xml version="1.0"?>
<!-- @author Artemii Karkusha -->
<!-- @copyright Copyright (c) (https://www.linkedin.com/in/artemiy-karkusha/) -->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">
<acl>
<resources>
<resource id="Magento_Backend::admin">
<!--[1.1]-->
<!--Resource controls a menu item and all resources below. -->
<resource id="ArtemiiKarkusha_AdobeCommercePreparingToCertification::menu" title="Custom Module Menu"
sortOrder="10">
<!--Resources control some actions our module. -->
<resource id="ArtemiiKarkusha_AdobeCommercePreparingToCertification::create" title="Create"
sortOrder="10"/>
<resource id="ArtemiiKarkusha_AdobeCommercePreparingToCertification::delete" title="Delete"
sortOrder="20"/>
<resource id="ArtemiiKarkusha_AdobeCommercePreparingToCertification::view" title="View"
sortOrder="30">
<resource id="ArtemiiKarkusha_AdobeCommercePreparingToCertification::view_additional"
title="View Additional Information" sortOrder="10"/>
</resource>
<!--1.2-->
<resource id="ArtemiiKarkusha_AdobeCommercePreparingToCertification::delivery_services"
title="Delivery Services"
sortOrder="40">
<resource id="ArtemiiKarkusha_AdobeCommercePreparingToCertification::delivery_services_list"
title="Delivery Services - List" sortOrder="10"/>
</resource>
</resource>
<resource id="ArtemiiKarkusha_AdobeCommercePreparingToCertification::delivery_service_management"
title="Delivery Service Management"/>
</resource>
</resources>
</acl>
</config>