Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_service.rb « organizations « customer_relations « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c223796eafa169e6eeae7083b944f28bdc50df3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

module CustomerRelations
  module Organizations
    class CreateService < BaseService
      # returns the created organization
      def execute
        return error_no_permissions unless allowed?

        params[:group_id] = group.id

        organization = Organization.create(params)

        return error_creating(organization) unless organization.persisted?

        ServiceResponse.success(payload: organization)
      end

      private

      def error_no_permissions
        error('You have insufficient permissions to create an organization for this group')
      end

      def error_creating(organization)
        error(organization&.errors&.full_messages || 'Failed to create organization')
      end
    end
  end
end