30 lines
780 B
Ruby
30 lines
780 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Groups
|
||
|
module GroupLinks
|
||
|
class CreateService < BaseService
|
||
|
def execute(shared_group)
|
||
|
unless group && shared_group &&
|
||
|
can?(current_user, :admin_group, shared_group) &&
|
||
|
can?(current_user, :read_group, group)
|
||
|
return error('Not Found', 404)
|
||
|
end
|
||
|
|
||
|
link = GroupGroupLink.new(
|
||
|
shared_group: shared_group,
|
||
|
shared_with_group: group,
|
||
|
group_access: params[:shared_group_access],
|
||
|
expires_at: params[:expires_at]
|
||
|
)
|
||
|
|
||
|
if link.save
|
||
|
group.refresh_members_authorized_projects
|
||
|
success(link: link)
|
||
|
else
|
||
|
error(link.errors.full_messages.to_sentence, 409)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|