diff --git a/client/pages/config/authentication.vue b/client/pages/config/authentication.vue index cecccee4..9f2e71ec 100644 --- a/client/pages/config/authentication.vue +++ b/client/pages/config/authentication.vue @@ -82,19 +82,20 @@

{{ $strings.LabelAutoRegisterDescription }}

-
{{ $strings.LabelOpenIDClaims }}
-
-
+

{{ $strings.LabelOpenIDClaims }}

+ +
+
-

+

-
-
+
+
-
+

{{ newAuthSettings.authOpenIDSamplePermissions }}
diff --git a/server/Auth.js b/server/Auth.js
index b52ee727..8ba87509 100644
--- a/server/Auth.js
+++ b/server/Auth.js
@@ -287,7 +287,7 @@ class Auth {
       throw new Error(`Advanced permissions claim ${absPermissionsClaim} not found in userinfo`)
 
     if (user.updatePermissionsFromExternalJSON(absPermissions)) {
-      Logger.debug(`[Auth] openid callback: Updating advanced perms for user "${user.username}" using "${JSON.stringify(absPermissions)}"`)
+      Logger.info(`[Auth] openid callback: Updating advanced perms for user "${user.username}" using "${JSON.stringify(absPermissions)}"`)
       await Database.userModel.updateFromOld(user)
     }
   }