diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-12-11 18:09:57 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-12-11 18:09:57 +0000 |
commit | 3172281335efddd1078fa6c601f3ba8782f73192 (patch) | |
tree | f26352ede418cecb20b3f08b6bd04c0d7830e231 /spec/factories | |
parent | a8704bd33cb36b4e7e88bb10d61265b8ad8a058c (diff) | |
download | gitlab-ce-3172281335efddd1078fa6c601f3ba8782f73192.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories')
-rw-r--r-- | spec/factories/users.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/factories/users.rb b/spec/factories/users.rb index 50656d14eb7..9b5e4a981a0 100644 --- a/spec/factories/users.rb +++ b/spec/factories/users.rb @@ -47,6 +47,10 @@ FactoryBot.define do user_type { :migration_bot } end + trait :security_bot do + user_type { :security_bot } + end + trait :external do external { true } end |