Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
92d3850a
Unverified
Commit
92d3850a
authored
2 years ago
by
Ngoc Khuat
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Make sure we don't remove admin mappings when ldap-sync-admin-group is (#21667)
parent
a266ca33
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/metabase/db/data_migrations.clj
+3
-1
3 additions, 1 deletion
src/metabase/db/data_migrations.clj
test/metabase/db/data_migrations_test.clj
+0
-1
0 additions, 1 deletion
test/metabase/db/data_migrations_test.clj
with
3 additions
and
2 deletions
src/metabase/db/data_migrations.clj
+
3
−
1
View file @
92d3850a
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
test/metabase/db/data_migrations_test.clj
+
0
−
1
View file @
92d3850a
...
...
@@ -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"
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment