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

description_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: 4c365a67bfdc6946bf727dc25f170c4871c6974f (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
# 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 DescriptionType < BaseObject
        graphql_name 'WorkItemWidgetDescription'
        description 'Represents a description widget'

        implements Types::WorkItems::WidgetInterface

        field :description, GraphQL::Types::String,
          null: true,
          description: 'Description of the work item.'

        markdown_field :description_html, null: true do |resolved_object|
          resolved_object.work_item
        end
      end
      # rubocop:enable Graphql/AuthorizeTypes
    end
  end
end