Renamed extension to feipauth
PHP Namespace: MMK2410/FeIpAuth
This commit is contained in:
parent
4878b2d9f7
commit
13efde1cfe
9 changed files with 18 additions and 19 deletions
|
@ -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'
|
||||
);
|
||||
|
|
Reference in a new issue