From f5cd93c6dba332fcd4e744ff73af10938d386964 Mon Sep 17 00:00:00 2001 From: David Leimroth Date: Mon, 7 Feb 2022 14:39:55 +0100 Subject: [PATCH] added more settings --- client/pages/config/sso.vue | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/client/pages/config/sso.vue b/client/pages/config/sso.vue index a3562e66b..1a81c2beb 100644 --- a/client/pages/config/sso.vue +++ b/client/pages/config/sso.vue @@ -40,6 +40,12 @@

User Settings

+ +
+ +

Create a new user on first login

+
+
Save
@@ -60,6 +66,10 @@ export default { clientSecret: "", }, + permissions: { + createNewUser: false, + }, + updatingSSOSettings: false, newSSOSettings: {} } @@ -90,6 +100,12 @@ export default { authorizationURL: val }) }, + updateCreateNewUser(val) { + return + this.updateSSOSettings({ + authorizationURL: val + }) + }, saveSSOSettings(payload) { console.log(this) this.updatingSSOSettings = true