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/todo_action_enum.rb')
-rw-r--r--app/graphql/types/todo_action_enum.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/graphql/types/todo_action_enum.rb b/app/graphql/types/todo_action_enum.rb
index ef43b6eb464..33e1c4e98a4 100644
--- a/app/graphql/types/todo_action_enum.rb
+++ b/app/graphql/types/todo_action_enum.rb
@@ -5,11 +5,12 @@ module Types
value 'assigned', value: 1, description: 'User was assigned.'
value 'mentioned', value: 2, description: 'User was mentioned.'
value 'build_failed', value: 3, description: 'Build triggered by the user failed.'
- value 'marked', value: 4, description: 'User added a TODO.'
+ value 'marked', value: 4, description: 'User added a to-do item.'
value 'approval_required', value: 5, description: 'User was set as an approver.'
value 'unmergeable', value: 6, description: 'Merge request authored by the user could not be merged.'
value 'directly_addressed', value: 7, description: 'User was directly addressed.'
value 'merge_train_removed', value: 8, description: 'Merge request authored by the user was removed from the merge train.'
value 'review_requested', value: 9, description: 'Review was requested from the user.'
+ value 'member_access_requested', value: 10, description: 'Group access requested from the user.'
end
end