Renamed extension to feipauth

PHP Namespace: MMK2410/FeIpAuth
This commit is contained in:
Marcel Kapfer 2021-03-29 16:37:45 +02:00
parent 4878b2d9f7
commit 13efde1cfe
Signed by: mmk2410
GPG key ID: CADE6F0C09F21B09
9 changed files with 18 additions and 19 deletions

View file

@ -2,9 +2,9 @@
defined('TYPO3_MODE') || die();
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addService(
'in2frontendauthentication',
'feipauth',
'auth',
\In2code\In2frontendauthentication\Domain\Service\AuthenticationService::class,
\MMK2410\FeIpAuth\Domain\Service\AuthenticationService::class,
[
'title' => 'Frontenduser authentication service',
'description' => 'Authentication visitors as frontend users if IP address is matching.',
@ -14,7 +14,7 @@ defined('TYPO3_MODE') || die();
'quality' => 50,
'os' => '',
'exec' => '',
'className' => \In2code\In2frontendauthentication\Domain\Service\AuthenticationService::class,
'className' => \MMK2410\FeIpAuth\Domain\Service\AuthenticationService::class,
]
);
@ -23,6 +23,6 @@ $signalSlotDispatcher = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TY
$signalSlotDispatcher->connect(
\BeechIt\FalSecuredownload\Security\CheckPermissions::class,
'AddCustomGroups',
\In2code\In2frontendauthentication\Slot\AddCustomGroupsSlot::class,
\MMK2410\FeIpAuth\Slot\AddCustomGroupsSlot::class,
'addCustomGroups'
);