debian-mirror-gitlab/app/graphql/mutations/customer_relations/contacts/create.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.7 KiB
Ruby
Raw Normal View History

2021-11-18 22:05:49 +05:30
# frozen_string_literal: true
module Mutations
module CustomerRelations
module Contacts
2022-07-16 23:28:13 +05:30
class Create < Base
2022-04-04 11:22:00 +05:30
graphql_name 'CustomerRelationsContactCreate'
2021-11-18 22:05:49 +05:30
include Gitlab::Graphql::Authorize::AuthorizeResource
argument :group_id, ::Types::GlobalIDType[::Group],
required: true,
description: 'Group for the contact.'
argument :organization_id, ::Types::GlobalIDType[::CustomerRelations::Organization],
required: false,
description: 'Organization for the contact.'
argument :first_name, GraphQL::Types::String,
required: true,
description: 'First name of the contact.'
argument :last_name, GraphQL::Types::String,
required: true,
description: 'Last name of the contact.'
argument :phone, GraphQL::Types::String,
required: false,
description: 'Phone number of the contact.'
argument :email, GraphQL::Types::String,
required: false,
description: 'Email address of the contact.'
argument :description, GraphQL::Types::String,
required: false,
description: 'Description of or notes for the contact.'
def resolve(args)
group = authorized_find!(id: args[:group_id])
set_organization!(args)
result = ::CustomerRelations::Contacts::CreateService.new(group: group, current_user: current_user, params: args).execute
{ contact: result.payload, errors: result.errors }
end
def find_object(id:)
GitlabSchema.object_from_id(id, expected_type: ::Group)
end
end
end
end
end