Testing/CI/ACL

This commit is contained in:
2026-03-21 03:01:08 -05:00
parent d1316c8fd6
commit dcebbceb88
60 changed files with 3141 additions and 1479 deletions
@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace MageSail\Magesail\Controller\Adminhtml\Tunnel;
@@ -33,6 +34,8 @@ class Status extends Action
protected function _isAllowed()
{
return $this->_authorization->isAllowed('MageSail_Magesail::tunnel');
return $this->_authorization->isAllowed('MageSail_Magesail::tunnel')
|| $this->_authorization->isAllowed('MageSail_Magesail::tunnel_view')
|| $this->_authorization->isAllowed('MageSail_Magesail::tunnel_manage');
}
}