summaryrefslogtreecommitdiff
path: root/app/graphql/types/notes/position_type_enum.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-03-16 18:18:33 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-16 18:18:33 +0000
commitf64a639bcfa1fc2bc89ca7db268f594306edfd7c (patch)
treea2c3c2ebcc3b45e596949db485d6ed18ffaacfa1 /app/graphql/types/notes/position_type_enum.rb
parentbfbc3e0d6583ea1a91f627528bedc3d65ba4b10f (diff)
downloadgitlab-ce-7f049e661d257321a8fa9ac9d5f98ed7494ef266.tar.gz
Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40
Diffstat (limited to 'app/graphql/types/notes/position_type_enum.rb')
-rw-r--r--app/graphql/types/notes/position_type_enum.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/notes/position_type_enum.rb b/app/graphql/types/notes/position_type_enum.rb
index abdb2cfc804..9939f6511ce 100644
--- a/app/graphql/types/notes/position_type_enum.rb
+++ b/app/graphql/types/notes/position_type_enum.rb
@@ -6,8 +6,8 @@ module Types
graphql_name 'DiffPositionType'
description 'Type of file the position refers to'
- value 'text'
- value 'image'
+ value 'text', description: "A text file"
+ value 'image', description: "An image"
end
end
end