diff options
author | 🙈 jacopo beschi 🙉 <intrip@gmail.com> | 2018-06-01 15:09:08 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2018-06-01 15:09:08 +0000 |
commit | 4c8783636cdc279aea802760146d58e6259bed57 (patch) | |
tree | 0dac9783096bc26435d0fba5366a6fa6a0d9925b /spec/factories/issues.rb | |
parent | d637fbe9af3f1efb9ce0a35c018a83c8b96d1f34 (diff) | |
download | gitlab-ce-4c8783636cdc279aea802760146d58e6259bed57.tar.gz |
Resolve "Update `updated_at` on an issue/mr on every issue/mr changes"
Diffstat (limited to 'spec/factories/issues.rb')
-rw-r--r-- | spec/factories/issues.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/factories/issues.rb b/spec/factories/issues.rb index 998080a3dd5..3a35bdd25de 100644 --- a/spec/factories/issues.rb +++ b/spec/factories/issues.rb @@ -3,6 +3,7 @@ FactoryBot.define do title { generate(:title) } project author { project.creator } + updated_by { author } trait :confidential do confidential true |