From d14d8d3018e47a71c8e63fb686ee6e4de153aeeb Mon Sep 17 00:00:00 2001 From: Dayan Graham Date: Wed, 12 Apr 2023 17:38:21 +0000 Subject: [PATCH] Move security field to correct area under SAML2 settings --- ee/api/chalicelib/utils/SAML2_helper.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ee/api/chalicelib/utils/SAML2_helper.py b/ee/api/chalicelib/utils/SAML2_helper.py index 2a7430ff9..fc3d878b3 100644 --- a/ee/api/chalicelib/utils/SAML2_helper.py +++ b/ee/api/chalicelib/utils/SAML2_helper.py @@ -23,9 +23,9 @@ SAML2 = { "NameIDFormat": "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress", "x509cert": config("sp_crt", default=""), "privateKey": config("sp_key", default=""), - "security": { - "requestedAuthnContext": False - } + }, + "security": { + "requestedAuthnContext": False }, "idp": None }