Skip to content

Commit

Permalink
Merge pull request #33 from xima-media/fix-default-fe-group
Browse files Browse the repository at this point in the history
fix: default frontend user group setting
  • Loading branch information
maikschneider authored Aug 12, 2024
2 parents 7d82b87 + a8538e9 commit 132a826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/UserFactory/FrontendUserFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public function persistAndRetrieveUser($userRecord): ?array
])] public function createBasicFrontendUser(int $targetPid): array
{
$saltingInstance = GeneralUtility::makeInstance(PasswordHashFactory::class)->getDefaultHashInstance('FE');
$defaultUserGroup = $this->extendedProviderConfiguration['defaultFrontendUsergroup'] ?? '';
$defaultUserGroup = $this->extendedProviderConfiguration[$this->providerId]['defaultFrontendUsergroup'] ?? '';

return [
'pid' => $targetPid,
Expand Down

0 comments on commit 132a826

Please sign in to comment.