Skip to content

Commit 6d2f408

Browse files
committed
fixed double abstract controller definition
1 parent 24932c8 commit 6d2f408

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

src/bundle/Controller/ContentViewController.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,6 @@ public function __construct(
158158
*/
159159
public function locationViewAction(Request $request, ContentView $view): ContentView
160160
{
161-
$this->performAccessCheck();
162-
163161
// We should not cache ContentView because we use forms with CSRF tokens in template
164162
// JIRA ref: https://issues.ibexa.co/browse/EZP-28190
165163
$view->setCacheEnabled(false);

src/bundle/Resources/config/services/controllers.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ services:
7777
tags:
7878
- controller.service_arguments
7979

80-
Ibexa\Bundle\AdminUi\Controller\ContentViewController: ~
80+
Ibexa\Bundle\AdminUi\Controller\ContentViewController:
81+
parent: Ibexa\Contracts\AdminUi\Controller\Controller
8182

8283
Ibexa\Bundle\AdminUi\Controller\DashboardController: ~
8384

@@ -226,8 +227,6 @@ services:
226227
arguments:
227228
$translationHelper: '@Ibexa\Core\Helper\TranslationHelper'
228229

229-
Ibexa\Contracts\AdminUi\Controller\Controller: ~
230-
231230
Ibexa\Bundle\AdminUi\Controller\FieldDefinitionController:
232231
parent: Ibexa\Rest\Server\Controller
233232
tags: ['controller.service_arguments']

0 commit comments

Comments
 (0)