Rename to FeIpLogin

This commit is contained in:
Marcel Kapfer 2021-03-29 19:13:31 +02:00
parent 837ed90239
commit 8f2bc0d6c4
Signed by: mmk2410
GPG key ID: CADE6F0C09F21B09
11 changed files with 21 additions and 21 deletions

View file

@ -2,9 +2,9 @@
defined('TYPO3_MODE') || die();
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addService(
'feipauth',
'feiplogin',
'auth',
\MMK2410\FeIpAuth\Domain\Service\AuthenticationService::class,
\MMK2410\FeIpLogin\Domain\Service\AuthenticationService::class,
[
'title' => 'Frontenduser authentication service',
'description' => 'Authentication visitors as frontend users if IP address is matching.',
@ -14,13 +14,13 @@ defined('TYPO3_MODE') || die();
'quality' => 50,
'os' => '',
'exec' => '',
'className' => \MMK2410\FeIpAuth\Domain\Service\AuthenticationService::class,
'className' => \MMK2410\FeIpLogin\Domain\Service\AuthenticationService::class,
]
);
/** @var \TYPO3\CMS\Extbase\SignalSlot\Dispatcher $signalSlotDispatcher */
$signalSlotDispatcher = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Extbase\\SignalSlot\\Dispatcher');
$signalSlotDispatcher->connect(
\MMK2410\FeIpAuth\Slot\AddCustomGroupsSlot::class,
\MMK2410\FeIpLogin\Slot\AddCustomGroupsSlot::class,
'addCustomGroups'
);