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

create.rb « organizations « customer_relations « mutations « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43c50a9fb30cc0ba10aebff50f9724302482bc42 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# frozen_string_literal: true

module Mutations
  module CustomerRelations
    module Organizations
      class Create < BaseMutation
        graphql_name 'CustomerRelationsOrganizationCreate'

        include ResolvesIds
        include Gitlab::Graphql::Authorize::AuthorizeResource

        field :organization,
              Types::CustomerRelations::OrganizationType,
              null: true,
              description: 'Organization after the mutation.'

        argument :group_id, ::Types::GlobalIDType[::Group],
                 required: true,
                 description: 'Group for the organization.'

        argument :name,
                 GraphQL::Types::String,
                 required: true,
                 description: 'Name of the organization.'

        argument :default_rate,
                 GraphQL::Types::Float,
                 required: false,
                 description: 'Standard billing rate for the organization.'

        argument :description,
                 GraphQL::Types::String,
                 required: false,
                 description: 'Description of or notes for the organization.'

        authorize :admin_crm_organization

        def resolve(args)
          group = authorized_find!(id: args[:group_id])

          result = ::CustomerRelations::Organizations::CreateService.new(group: group, current_user: current_user, params: args).execute
          { organization: result.payload, errors: result.errors }
        end

        def find_object(id:)
          GitlabSchema.object_from_id(id, expected_type: ::Group)
        end
      end
    end
  end
end