forked from magemojo/m2-ce-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
magemojo#120 add ACL for admin visibility
- Loading branch information
Jessica King
committed
Sep 8, 2023
1 parent
7da592c
commit 4693e79
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0"?> | ||
<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"> | ||
<resource id="MageMojo_Cron::heading" title="MageMojo Cron" translate="title" sortOrder="79"> | ||
<resource id="MageMojo_Cron::settings" title="Cron Configuration" translate="title" sortOrder="1"/> | ||
<resource id="MageMojo_Cron::reports" title="Cron Execution Report" translate="title" sortOrder="1"/> | ||
</resource> | ||
</resource> | ||
</resources> | ||
</acl> | ||
</config> |