Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/snippets/type_enum.rb')
-rw-r--r--app/graphql/types/snippets/type_enum.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/snippets/type_enum.rb b/app/graphql/types/snippets/type_enum.rb
index 243f05359db..0ddd73d278d 100644
--- a/app/graphql/types/snippets/type_enum.rb
+++ b/app/graphql/types/snippets/type_enum.rb
@@ -3,8 +3,8 @@
module Types
module Snippets
class TypeEnum < BaseEnum
- value 'personal', value: 'personal'
- value 'project', value: 'project'
+ value 'personal', description: 'Snippet created independent of any project.', value: 'personal'
+ value 'project', description: 'Snippet related to a specific project.', value: 'project'
end
end
end