summaryrefslogtreecommitdiff
path: root/app/graphql/types/work_items/widgets/description_type.rb
blob: 79192d7c3d434b24a6cc0815635f5aa008dd0713 (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
# 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