@@ -44,6 +44,9 @@ class BackendAuthentication extends \Magento\Backend\App\Action\Plugin\Authentic
44
44
* @param ResponseInterface $response
45
45
* @param \Magento\Framework\App\ActionFlag $actionFlag
46
46
* @param \Magento\Framework\Message\ManagerInterface $messageManager
47
+ * @param \Magento\Backend\Model\UrlInterface $backendUrl
48
+ * @param \Magento\Framework\Controller\Result\RedirectFactory $resultRedirectFactory
49
+ * @param \Magento\Backend\App\BackendAppList $backendAppList
47
50
* @param \Magento\Framework\HTTP\Authentication $httpAuthentication
48
51
* @param \Psr\Log\LoggerInterface $logger
49
52
* @param \Magento\Framework\AuthorizationInterface $authorization
@@ -55,6 +58,9 @@ public function __construct(
55
58
ResponseInterface $ response ,
56
59
\Magento \Framework \App \ActionFlag $ actionFlag ,
57
60
\Magento \Framework \Message \ManagerInterface $ messageManager ,
61
+ \Magento \Backend \Model \UrlInterface $ backendUrl ,
62
+ \Magento \Framework \Controller \Result \RedirectFactory $ resultRedirectFactory ,
63
+ \Magento \Backend \App \BackendAppList $ backendAppList ,
58
64
\Magento \Framework \HTTP \Authentication $ httpAuthentication ,
59
65
\Psr \Log \LoggerInterface $ logger ,
60
66
\Magento \Framework \AuthorizationInterface $ authorization ,
@@ -64,7 +70,8 @@ public function __construct(
64
70
$ this ->logger = $ logger ;
65
71
$ this ->authorization = $ authorization ;
66
72
$ this ->aclResources = $ aclResources ;
67
- parent ::__construct ($ auth , $ url , $ response , $ actionFlag , $ messageManager );
73
+ parent ::__construct ($ auth , $ url , $ response , $ actionFlag , $ messageManager , $ backendUrl , $ resultRedirectFactory ,
74
+ $ backendAppList );
68
75
}
69
76
70
77
/**
0 commit comments