debian-mirror-gitlab/app/graphql/mutations/customer_relations/organizations/update.rb

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

51 lines
1.7 KiB
Ruby
Raw Normal View History

2021-11-11 11:23:49 +05:30
# frozen_string_literal: true
module Mutations
module CustomerRelations
module Organizations
class Update < Mutations::BaseMutation
graphql_name 'CustomerRelationsOrganizationUpdate'
2022-04-04 11:22:00 +05:30
include ResolvesIds
2021-12-11 22:18:48 +05:30
authorize :admin_crm_organization
2021-11-11 11:23:49 +05:30
field :organization,
Types::CustomerRelations::OrganizationType,
null: false,
description: 'Organization after the mutation.'
argument :id, ::Types::GlobalIDType[::CustomerRelations::Organization],
required: true,
description: 'Global ID of the organization.'
argument :name,
GraphQL::Types::String,
required: false,
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,
2021-11-18 22:05:49 +05:30
description: 'Description of or notes for the organization.'
2021-11-11 11:23:49 +05:30
def resolve(args)
organization = ::Gitlab::Graphql::Lazy.force(GitlabSchema.object_from_id(args.delete(:id), expected_type: ::CustomerRelations::Organization))
raise_resource_not_available_error! unless organization
group = organization.group
authorize!(group)
result = ::CustomerRelations::Organizations::UpdateService.new(group: group, current_user: current_user, params: args).execute(organization)
{ organization: result.payload, errors: result.errors }
end
end
end
end
end