2020-03-04 16:07:54 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Groups
|
|
|
|
module GroupLinks
|
|
|
|
class UpdateService < BaseService
|
|
|
|
def initialize(group_link, user = nil)
|
|
|
|
super(group_link.shared_group, user)
|
|
|
|
|
|
|
|
@group_link = group_link
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute(group_link_params)
|
|
|
|
group_link.update!(group_link_params)
|
|
|
|
|
|
|
|
if requires_authorization_refresh?(group_link_params)
|
2021-07-19 14:08:23 -04:00
|
|
|
group_link.shared_with_group.refresh_members_authorized_projects(blocking: false, direct_members_only: true)
|
2020-03-04 16:07:54 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
attr_accessor :group_link
|
|
|
|
|
|
|
|
def requires_authorization_refresh?(params)
|
|
|
|
params.include?(:group_access)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|