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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-09-21 15:09:34 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-09-21 15:09:34 +0300
commit79850719759d6fe1b0682fd27573d479c9013f03 (patch)
treebc0466515aca2c2db339cfe8e44d3c148804d304 /spec/factories/todos.rb
parentd05604c95aeed1e8bbf63abc0b363cb921f0996a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories/todos.rb')
-rw-r--r--spec/factories/todos.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/factories/todos.rb b/spec/factories/todos.rb
index 0b5d00cff67..97a1265c46a 100644
--- a/spec/factories/todos.rb
+++ b/spec/factories/todos.rb
@@ -12,6 +12,10 @@ FactoryBot.define do
action { Todo::ASSIGNED }
end
+ trait :review_requested do
+ action { Todo::REVIEW_REQUESTED }
+ end
+
trait :mentioned do
action { Todo::MENTIONED }
end