From 72ff102ac035ee023a757597b45ea1e991472fa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BCrk?= Date: Thu, 19 Dec 2024 17:38:40 +0100 Subject: [PATCH] [!!!][TASK] Move glossary access registration into `EXT:deepltranslate_glossary` Glossary feature related code has been moved into a dedicated addon extension `deepltranslate_glossary` but missed to move the related access permission registration along the way. This has been provided in the addon extension with [1] and can now removed in the `deepltranslate_core` extension. [1] https://github.com/web-vision/deepltranslate-glossary/pull/1 --- Classes/Access/AllowedGlossarySyncAccess.php | 30 -------------------- Resources/Private/Language/locallang.xlf | 6 ---- ext_localconf.php | 1 - 3 files changed, 37 deletions(-) delete mode 100644 Classes/Access/AllowedGlossarySyncAccess.php diff --git a/Classes/Access/AllowedGlossarySyncAccess.php b/Classes/Access/AllowedGlossarySyncAccess.php deleted file mode 100644 index 4137869f..00000000 --- a/Classes/Access/AllowedGlossarySyncAccess.php +++ /dev/null @@ -1,30 +0,0 @@ - - - Allowed Glossary Sync - - - - diff --git a/ext_localconf.php b/ext_localconf.php index e3e7583b..daf82a17 100644 --- a/ext_localconf.php +++ b/ext_localconf.php @@ -56,5 +56,4 @@ $accessRegistry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\WebVision\Deepltranslate\Core\Access\AccessRegistry::class); $accessRegistry->addAccess((new \WebVision\Deepltranslate\Core\Access\AllowedTranslateAccess())); - $accessRegistry->addAccess((new \WebVision\Deepltranslate\Core\Access\AllowedGlossarySyncAccess())); })();