summaryrefslogtreecommitdiff
path: root/app/services/groups
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-10-27 13:06:17 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-10-27 13:06:17 +0000
commit8cf3b9ab464420af642931a89f5fb24c65b1338d (patch)
treebbe9873aef1a15764fe668258f6aea4e0efac2eb /app/services/groups
parentc1c828ac7f7b3c2e51d81921bbef9d474cd4d0a4 (diff)
downloadgitlab-ce-8cf3b9ab464420af642931a89f5fb24c65b1338d.tar.gz
Add latest changes from gitlab-org/security/gitlab@14-4-stable-ee
Diffstat (limited to 'app/services/groups')
-rw-r--r--app/services/groups/update_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/groups/update_service.rb b/app/services/groups/update_service.rb
index 1ad43b051be..2d6334251ad 100644
--- a/app/services/groups/update_service.rb
+++ b/app/services/groups/update_service.rb
@@ -15,7 +15,7 @@ module Groups
return false
end
- return false unless valid_visibility_level_change?(group, params[:visibility_level])
+ return false unless valid_visibility_level_change?(group, group.visibility_attribute_value(params))
return false unless valid_share_with_group_lock_change?
@@ -77,7 +77,7 @@ module Groups
end
def after_update
- if group.previous_changes.include?(:visibility_level) && group.private?
+ if group.previous_changes.include?(group.visibility_level_field) && group.private?
# don't enqueue immediately to prevent todos removal in case of a mistake
TodosDestroyer::GroupPrivateWorker.perform_in(Todo::WAIT_FOR_DELETE, group.id)
end