26 lines
656 B
Ruby
26 lines
656 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Groups
|
|
module GroupLinks
|
|
class DestroyService < BaseService
|
|
def execute(one_or_more_links)
|
|
links = Array(one_or_more_links)
|
|
|
|
GroupGroupLink.transaction do
|
|
GroupGroupLink.delete(links)
|
|
|
|
groups_to_refresh = links.map(&:shared_with_group)
|
|
groups_to_refresh.uniq.each do |group|
|
|
group.refresh_members_authorized_projects
|
|
end
|
|
|
|
Gitlab::AppLogger.info("GroupGroupLinks with ids: #{links.map(&:id)} have been deleted.")
|
|
rescue => ex
|
|
Gitlab::AppLogger.error(ex)
|
|
|
|
raise
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|