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

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

module Types
  module WorkItems
    module WidgetDefinitions
      # rubocop:disable Graphql/AuthorizeTypes -- Authorization too granular, parent type is authorized
      class GenericType < BaseObject
        graphql_name 'WorkItemWidgetDefinitionGeneric'
        description 'Represents a generic widget definition'

        implements Types::WorkItems::WidgetDefinitionInterface
      end
      # rubocop:enable Graphql/AuthorizeTypes
    end
  end
end