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

weight_type.rb « widgets « work_items « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8eaf560268fb7dffa11381faf3533dd7637427b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Types
  module WorkItems
    module Widgets
      # Disabling widget level authorization as it might be too granular
      # and we already authorize the parent work item
      # rubocop:disable Graphql/AuthorizeTypes
      class WeightType < BaseObject
        graphql_name 'WorkItemWidgetWeight'
        description 'Represents a weight widget'

        implements Types::WorkItems::WidgetInterface

        field :weight, GraphQL::Types::Int, null: true,
              description: 'Weight of the work item.'
      end
      # rubocop:enable Graphql/AuthorizeTypes
    end
  end
end