2018-07-17 12:50:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-11-01 10:08:18 -04:00
|
|
|
module Projects
|
|
|
|
module GroupLinks
|
|
|
|
class CreateService < BaseService
|
|
|
|
def execute(group)
|
2019-02-12 07:29:47 -05:00
|
|
|
return error('Not Found', 404) unless group && can?(current_user, :read_namespace, group)
|
2017-11-01 10:08:18 -04:00
|
|
|
|
2019-02-12 07:29:47 -05:00
|
|
|
link = project.project_group_links.new(
|
2017-11-01 10:08:18 -04:00
|
|
|
group: group,
|
|
|
|
group_access: params[:link_group_access],
|
|
|
|
expires_at: params[:expires_at]
|
|
|
|
)
|
2019-02-12 07:29:47 -05:00
|
|
|
|
|
|
|
if link.save
|
|
|
|
success(link: link)
|
|
|
|
else
|
|
|
|
error(link.errors.full_messages.to_sentence, 409)
|
|
|
|
end
|
2017-11-01 10:08:18 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|