Skip to content

Commit

Permalink
adds some default scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-staab committed Jan 17, 2025
1 parent 020b9a7 commit 4917b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/services.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
'client_secret' => env('OIDC_CLIENT_SECRET'),
'provider_url' => env('OIDC_PROVIDER_URL'),
'certificate_path' => env('OIDC_CERT_PATH'),
'scopes' => explode(' ', env('OIDC_SCOPES')),
'scopes' => explode(' ', env('OIDC_SCOPES', 'openid profile email')),
'verify_host' => env('OIDC_VERIFY_HOST', true),
'attribute-mapping' => [
'uid' => env('OIDC_ATTRIBUTE_UID', 'sub'),
Expand Down

0 comments on commit 4917b8a

Please sign in to comment.