We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da1daae commit 1f12acfCopy full SHA for 1f12acf
app/code/Magento/Backend/Controller/Adminhtml/Index/Denied.php
@@ -9,13 +9,17 @@
9
namespace Magento\Backend\Controller\Adminhtml\Index;
10
11
use Magento\Backend\Controller\Adminhtml\Denied as DeniedController;
12
+use Magento\Framework\App\Action\HttpGetActionInterface;
13
14
/**
15
* To display Denied Page
16
*
17
* Class Denied
18
*/
-class Denied extends DeniedController
19
+class Denied extends DeniedController implements HttpGetActionInterface
20
{
-
21
+ /**
22
+ * Authorization level of a basic admin session
23
+ */
24
+ const ADMIN_RESOURCE = 'Magento_Backend::admin';
25
}
0 commit comments