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

create.rb « boards « mutations « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92bce5574468245a6aed9060b4da4c2d7862692b (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
# frozen_string_literal: true

module Mutations
  module Boards
    class Create < ::Mutations::BaseMutation
      include Mutations::ResolvesResourceParent

      graphql_name 'CreateBoard'

      include Mutations::Boards::CommonMutationArguments

      field :board,
            Types::BoardType,
            null: true,
            description: 'The board after mutation.'

      authorize :admin_board

      def resolve(args)
        board_parent = authorized_resource_parent_find!(args)

        response = ::Boards::CreateService.new(board_parent, current_user, args).execute

        {
          board: response.payload,
          errors: response.errors
        }
      end
    end
  end
end

Mutations::Boards::Create.prepend_if_ee('::EE::Mutations::Boards::Create')