Rename to FeIpLogin
This commit is contained in:
parent
837ed90239
commit
8f2bc0d6c4
11 changed files with 21 additions and 21 deletions
|
@ -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'
|
||||
);
|
||||
|
|
Reference in a new issue