From 5023c0277dbf6aea969f554978e61bb833210df9 Mon Sep 17 00:00:00 2001 From: Mustafa Baser Date: Thu, 7 Jul 2022 13:38:39 +0300 Subject: [PATCH] fix: jans-linux-setup add dummy jansRedirectURI to scim client --- jans-linux-setup/jans_setup/setup_app/installers/scim.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jans-linux-setup/jans_setup/setup_app/installers/scim.py b/jans-linux-setup/jans_setup/setup_app/installers/scim.py index 613da151bb5..74a45091653 100644 --- a/jans-linux-setup/jans_setup/setup_app/installers/scim.py +++ b/jans-linux-setup/jans_setup/setup_app/installers/scim.py @@ -143,7 +143,8 @@ def generate_configuration(self): 'jansSubjectTyp': ['pairwise'], 'jansTknEndpointAuthMethod': ['client_secret_basic'], 'inum': [Config.scim_client_id], - 'jansClntSecret': [Config.scim_client_encoded_pw] + 'jansClntSecret': [Config.scim_client_encoded_pw], + 'jansRedirectURI': ['https://{}/.well-known/scim-configuration'.format(Config.hostname)] }) client_ldif_fd.close()