diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-05-21 15:50:22 +0200 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-05-22 08:57:21 +0200 |
| commit | a1af0876336811e591f07267266ea2ec82be98e2 (patch) | |
| tree | 50e8048610a8a6f8721cfe246d4fc10969a03d2a /config | |
| parent | 30fe49644edb370ab5647a5feb4615aa712d7ea5 (diff) | |
allow setting the redirect uri of oidc auth plugin and open the oidc and oauth2 auth plugins for derivations, fixes #5625
Closes #5625
Merge request studip/studip!4239
Diffstat (limited to 'config')
| -rw-r--r-- | config/config_defaults.inc.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/config_defaults.inc.php b/config/config_defaults.inc.php index 7bbf4d5..24375f4 100644 --- a/config/config_defaults.inc.php +++ b/config/config_defaults.inc.php @@ -349,8 +349,12 @@ $STUDIP_AUTH_CONFIG_GOOGLE = [ 'auth_user_md5.Nachname' => ['callback' => 'getUserData', 'map_args' => 'family_name'], 'auth_user_md5.Vorname' => ['callback' => 'getUserData', 'map_args' => 'given_name'] ], + // Enable the next line to allow setting your own scopes - // 'scopes' => [] + // 'scopes' => [], + + // Enable the next line to set a custom redirect uri + // 'redirect_uri' => '', ]; $STUDIP_AUTH_CONFIG_LTI = [ |
