From b98a3b422c7512edcbbc34ebdfd4219ac7c13508 Mon Sep 17 00:00:00 2001 From: David Leimroth Date: Thu, 10 Feb 2022 19:06:04 +0100 Subject: [PATCH] changed the way sso user id's are generated --- server/Auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Auth.js b/server/Auth.js index 9af0a817b..52e5454a8 100644 --- a/server/Auth.js +++ b/server/Auth.js @@ -221,7 +221,7 @@ class Auth { if (!user && this.db.SSOSettings.user.createNewUser) { // create a user let account = {} - account.id = profile.username + account.id = getId('usr') account.ssoId = profile.id account.username = profile.username account.isActive = true