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

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

module Mutations
  module Boards
    module Lists
      class Update < BaseMutation
        graphql_name 'UpdateBoardList'

        argument :list_id, Types::GlobalIDType[List],
                  required: true,
                  loads: Types::BoardListType,
                  description: 'Global ID of the list.'

        argument :position, GraphQL::INT_TYPE,
                  required: false,
                  description: 'Position of list within the board'

        argument :collapsed, GraphQL::BOOLEAN_TYPE,
                  required: false,
                  description: 'Indicates if list is collapsed for this user'

        field :list,
              Types::BoardListType,
              null: true,
              description: 'Mutated list'

        def resolve(list: nil, **args)
          raise_resource_not_available_error! unless can_read_list?(list)
          update_result = update_list(list, args)

          {
            list: update_result[:list],
            errors: list.errors.full_messages
          }
        end

        private

        def update_list(list, args)
          service = ::Boards::Lists::UpdateService.new(list.board, current_user, args)
          service.execute(list)
        end

        def can_read_list?(list)
          return false unless list.present?

          Ability.allowed?(current_user, :read_list, list.board)
        end
      end
    end
  end
end