summaryrefslogtreecommitdiff
path: root/app/graphql/types/projects/services/jira_service_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/projects/services/jira_service_type.rb')
-rw-r--r--app/graphql/types/projects/services/jira_service_type.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/graphql/types/projects/services/jira_service_type.rb b/app/graphql/types/projects/services/jira_service_type.rb
new file mode 100644
index 00000000000..4fd9e61f5a4
--- /dev/null
+++ b/app/graphql/types/projects/services/jira_service_type.rb
@@ -0,0 +1,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