30 lines
630 B
Ruby
30 lines
630 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Projects
|
||
|
module GroupLinks
|
||
|
class UpdateService < BaseService
|
||
|
def initialize(group_link, user = nil)
|
||
|
super(group_link.project, user)
|
||
|
|
||
|
@group_link = group_link
|
||
|
end
|
||
|
|
||
|
def execute(group_link_params)
|
||
|
group_link.update!(group_link_params)
|
||
|
|
||
|
if requires_authorization_refresh?(group_link_params)
|
||
|
group_link.group.refresh_members_authorized_projects
|
||
|
end
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
attr_reader :group_link
|
||
|
|
||
|
def requires_authorization_refresh?(params)
|
||
|
params.include?(:group_access)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|