From 174cae02c65ed24e667bb253e26bb37f082603ca Mon Sep 17 00:00:00 2001 From: Mihai Doarna Date: Tue, 26 Mar 2024 12:59:33 +0200 Subject: [PATCH 1/2] add the missing allowSignUp field to okta provider --- public/app/features/auth-config/fields.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/public/app/features/auth-config/fields.tsx b/public/app/features/auth-config/fields.tsx index f40536bf95b7..ca8ad0884ea4 100644 --- a/public/app/features/auth-config/fields.tsx +++ b/public/app/features/auth-config/fields.tsx @@ -198,7 +198,17 @@ export const sectionFields: Section = { { name: 'General settings', id: 'general', - fields: ['name', 'clientId', 'clientSecret', 'scopes', 'authUrl', 'tokenUrl', 'apiUrl', 'signoutRedirectUrl'], + fields: [ + 'name', + 'clientId', + 'clientSecret', + 'scopes', + 'authUrl', + 'tokenUrl', + 'apiUrl', + 'allowSignUp', + 'signoutRedirectUrl', + ], }, { name: 'User mapping', From 346d993b2c23ddc298a56aede6b198ea71ec0d05 Mon Sep 17 00:00:00 2001 From: Mihai Doarna Date: Tue, 26 Mar 2024 14:19:19 +0200 Subject: [PATCH 2/2] add autoLogin to okta --- public/app/features/auth-config/fields.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/features/auth-config/fields.tsx b/public/app/features/auth-config/fields.tsx index ca8ad0884ea4..952e3af3e7b9 100644 --- a/public/app/features/auth-config/fields.tsx +++ b/public/app/features/auth-config/fields.tsx @@ -207,6 +207,7 @@ export const sectionFields: Section = { 'tokenUrl', 'apiUrl', 'allowSignUp', + 'autoLogin', 'signoutRedirectUrl', ], },