From 6ddced7ba8b8d44e75b946c6ddb7954b34fac3bf Mon Sep 17 00:00:00 2001 From: Mihai Doarna Date: Tue, 26 Mar 2024 14:45:45 +0200 Subject: [PATCH] SSO: add the missing fields to the okta provider (#85152) * add the missing allowSignUp field to okta provider * add autoLogin to okta --- public/app/features/auth-config/fields.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/public/app/features/auth-config/fields.tsx b/public/app/features/auth-config/fields.tsx index f40536bf95b..952e3af3e7b 100644 --- a/public/app/features/auth-config/fields.tsx +++ b/public/app/features/auth-config/fields.tsx @@ -198,7 +198,18 @@ 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', + 'autoLogin', + 'signoutRedirectUrl', + ], }, { name: 'User mapping',