Skip to content
Closed
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Classes/OidcConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function __construct(array $extConfig = [])
$this->oidcClientKey = $extConfig['oidcClientKey'];
$this->oidcClientSecret = $extConfig['oidcClientSecret'];
$this->oidcClientScopes = $extConfig['oidcClientScopes'];
$this->oidcClientScopeSeparator = $extConfig['oidcClientScopeSeparator'] === '' ? ' ' : $extConfig['oidcClientScopeSeparator'];
$this->oidcClientScopeSeparator = empty($extConfig['oidcClientScopeSeparator']) ? ' ' : $extConfig['oidcClientScopeSeparator'];
Comment thread
liayn marked this conversation as resolved.
Outdated
$this->endpointAuthorize = $extConfig['oidcEndpointAuthorize'];
$this->endpointToken = $extConfig['oidcEndpointToken'];
$this->endpointUserInfo = $extConfig['oidcEndpointUserInfo'];
Expand Down
2 changes: 2 additions & 0 deletions Configuration/Sets/Oidc/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
name: causal/oidc
label: OIDC
Empty file.
1 change: 1 addition & 0 deletions Configuration/Sets/Oidc/setup.typoscript
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'EXT:oidc/Configuration/TypoScript/setup.typoscript'