summaryrefslogtreecommitdiff
path: root/app/graphql/types/projects/services/jira_project_type.rb
blob: eb721d02b36042bb0280e0bff5495c15ddbff00a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Types
  module Projects
    module Services
      # rubocop:disable Graphql/AuthorizeTypes
      # TODO: Remove in 17.0, see https://gitlab.com/gitlab-org/gitlab/-/merge_requests/108418
      class JiraProjectType < BaseObject
        graphql_name 'JiraProject'

        field :key, GraphQL::Types::String, null: false,
                                            description: 'Key of the Jira project.'
        field :name, GraphQL::Types::String, null: true,
                                             description: 'Name of the Jira project.'
        field :project_id, GraphQL::Types::Int, null: false,
                                                description: 'ID of the Jira project.',
                                                method: :id
      end
      # rubocop:enable Graphql/AuthorizeTypes
    end
  end
end