mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 17:56:12 +02:00

[BUGFIX] Use full controller class name for plugin registration (#457)

This get the FE output of the plugin get to work in TYPO3 10LTS
and 11LTS.

Fixes #441
This commit is contained in:
Oliver Klee 2022-06-15 16:15:04 +02:00 committed by GitHub
parent 569fad3626
commit be40b3719e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,11 +11,11 @@ defined('TYPO3_MODE') or die('Access denied.');
'Tea',
// all actions
[
'Tea' => 'index, show',
\TTN\Tea\Controller\TeaController::class => 'index, show',
],
// non-cacheable actions
[
'Tea' => '',
\TTN\Tea\Controller\TeaController::class => '',
]
);
})();