1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-07 23:03:00 +03:00

Started refactor for merge of OIDC

- Made oidc config more generic to not be overly reliant on the library
  based upon learnings from saml2 auth.
- Removed any settings that are redundant or not deemed required for
  initial implementation.
- Reduced some methods down where not needed.
- Renamed OpenID to OIDC
- Updated .env.example.complete to align with all options and their
  defaults

Related to #2169
This commit is contained in:
Dan Brown
2021-10-06 17:12:01 +01:00
parent 193d7fb3fe
commit 2ec0aa85ca
7 changed files with 283 additions and 338 deletions

View File

@@ -26,7 +26,7 @@ class Saml2Service extends ExternalAuthService
/**
* Saml2Service constructor.
*/
public function __construct(RegistrationService $registrationService, LoginService $loginService, User $user),
public function __construct(RegistrationService $registrationService, LoginService $loginService, User $user)
{
parent::__construct($registrationService, $user);