Skip to content

Commit

Permalink
Use hardcoded guardian username
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Riedmüller committed May 17, 2024
1 parent 1f8298c commit cb34065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/AuthGuardianProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function provideSessionInfo( WebRequest $request ) {
return null;
}

$guardianUsername = $this->daConfig->get( 'GuardianUsername' );
$guardianUsername = "Guardian";
$guardianUser = $this->userFactory->newFromName( $guardianUsername );
$sessionId = bin2hex( random_bytes( 32 ) );

Expand Down

0 comments on commit cb34065

Please sign in to comment.