From bc11423432367c6be6bc7dfb392577babc6590e7 Mon Sep 17 00:00:00 2001 From: "grafana-delivery-bot[bot]" <132647405+grafana-delivery-bot[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 15:02:34 +0200 Subject: [PATCH] [v11.0.x] SSO: add the missing fields to the okta provider (#85161) SSO: add the missing fields to the okta provider (#85152) * add the missing allowSignUp field to okta provider * add autoLogin to okta (cherry picked from commit 6ddced7ba8b8d44e75b946c6ddb7954b34fac3bf) Co-authored-by: Mihai Doarna --- 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 f40536bf95b7..952e3af3e7b9 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',