Skip to content
Snippets Groups Projects
Unverified Commit 92d3850a authored by Ngoc Khuat's avatar Ngoc Khuat Committed by GitHub
Browse files

Make sure we don't remove admin mappings when ldap-sync-admin-group is (#21667)

parent a266ca33
No related branches found
No related tags found
No related merge requests found
......@@ -204,7 +204,9 @@
;; But on upgrade, to make sure we don't unexpectedly begin adding or removing admin users:
;; - for LDAP, if the `ldap-sync-admin-group` toggle is disabled, we remove all mapping for the admin group
;; - for SAML, JWT, we remove all mapping for admin group, because they were previously never being synced
(when (= (raw-setting :ldap-sync-admin-group) "false")
;; if `ldap-sync-admin-group` has never been written, getting raw-setting will return a `nil`, and nil could also be interpreted as disabled.
;; so checking (not= x "true") is safer than (= x "false")
(when (not= (raw-setting :ldap-sync-admin-group) "true")
(remove-admin-group-from-mappings-by-setting-key! :ldap-group-mappings))
;; sso are enterprise feature but we still run this even in OSS in case a customer
;; have switched from enterprise -> SSO and stil have this mapping in Setting table
......
......@@ -342,7 +342,6 @@
[ldap-group-mappings (json/generate-string ldap-group-mappings)
saml-group-mappings (json/generate-string sso-group-mappings)
jwt-group-mappings (json/generate-string sso-group-mappings)
ldap-sync-admin-group "false"
saml-enabled "true"
ldap-enabled "true"
jwt-enabled "true"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment