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

module Types
  module Projects
    module Services
      class JiraServiceType < BaseObject
        graphql_name 'JiraService'

        implements(Types::Projects::ServiceType)

        authorize :admin_project
        # This is a placeholder for now for the actuall implementation of the JiraServiceType
        # Here we will want to expose a field with jira_projects fetched through Jira Rest API
        # MR implementing it https://gitlab.com/gitlab-org/gitlab/-/merge_requests/28190
      end
    end
  end
end