summaryrefslogtreecommitdiff
path: root/app/graphql/types/issuable_state_enum.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/issuable_state_enum.rb')
-rw-r--r--app/graphql/types/issuable_state_enum.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/graphql/types/issuable_state_enum.rb b/app/graphql/types/issuable_state_enum.rb
index 543b7f8e5b2..5a1b11b3bdc 100644
--- a/app/graphql/types/issuable_state_enum.rb
+++ b/app/graphql/types/issuable_state_enum.rb
@@ -5,9 +5,9 @@ module Types
graphql_name 'IssuableState'
description 'State of a GitLab issue or merge request'
- value 'opened'
- value 'closed'
- value 'locked'
- value 'all'
+ value 'opened', description: 'In open state.'
+ value 'closed', description: 'In closed state.'
+ value 'locked', description: 'Discussion has been locked.'
+ value 'all', description: 'All available.'
end
end