summaryrefslogtreecommitdiff
path: root/app/graphql/types/snippet_type.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-19 09:09:27 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-19 09:09:27 +0000
commit2af90cef2e2e9c776eae4394a43dba3be7f33d1e (patch)
treebb4bc691caa6cc74b45720ecd779517f9c8c2cd3 /app/graphql/types/snippet_type.rb
parentcf58004721ee715dd3884476f6fa0c62a7e7f247 (diff)
downloadgitlab-ce-2af90cef2e2e9c776eae4394a43dba3be7f33d1e.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/graphql/types/snippet_type.rb')
-rw-r--r--app/graphql/types/snippet_type.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/graphql/types/snippet_type.rb b/app/graphql/types/snippet_type.rb
index cb0bd5205b0..7affcae9f8f 100644
--- a/app/graphql/types/snippet_type.rb
+++ b/app/graphql/types/snippet_type.rb
@@ -65,6 +65,14 @@ module Types
calls_gitaly: true,
null: false
+ field :ssh_url_to_repo, type: GraphQL::STRING_TYPE,
+ description: 'SSH URL to the snippet repository',
+ null: true
+
+ field :http_url_to_repo, type: GraphQL::STRING_TYPE,
+ description: 'HTTP URL to the snippet repository',
+ null: true
+
markdown_field :description_html, null: true, method: :description
end
end