summaryrefslogtreecommitdiff
path: root/app/graphql/types/projects/service_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/projects/service_type.rb')
-rw-r--r--app/graphql/types/projects/service_type.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/graphql/types/projects/service_type.rb b/app/graphql/types/projects/service_type.rb
index 88b7b95aa57..1416d93d3b4 100644
--- a/app/graphql/types/projects/service_type.rb
+++ b/app/graphql/types/projects/service_type.rb
@@ -9,11 +9,11 @@ module Types
# TODO: Add all the fields that we want to expose for the project services integrations
# https://gitlab.com/gitlab-org/gitlab/-/issues/213088
field :type, GraphQL::Types::String, null: true,
- description: 'Class name of the service.'
+ description: 'Class name of the service.'
field :service_type, ::Types::Projects::ServiceTypeEnum, null: true,
- description: 'Type of the service.'
+ description: 'Type of the service.'
field :active, GraphQL::Types::Boolean, null: true,
- description: 'Indicates if the service is active.'
+ description: 'Indicates if the service is active.'
def type
enum = ::Types::Projects::ServiceTypeEnum.coerce_result(service_type, context)