diff options
author | Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | 2015-05-28 11:06:30 +0200 |
---|---|---|
committer | Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | 2015-06-05 15:22:55 +0200 |
commit | fbdaf0e2a517660c0e4e3960f20b2d3568c33e78 (patch) | |
tree | 3507bd4016caf662bb2efdfc8e15d498868968ae /spec/models/note_spec.rb | |
parent | 91f2d3c22918d62a22ff76ec72fddd0a0d672b79 (diff) | |
download | gitlab-ce-fbdaf0e2a517660c0e4e3960f20b2d3568c33e78.tar.gz |
Update noteable after a new note is added
**What does this do?**
It makes sure that whenever a new note is added to an noteable item, the
updated_at of that item is also updated.
**Why is this needed?**
At this moment when you post a comment on an issue or add a label to an issue,
the updated_at is not changed. Because of this the filtering for least recently
updated is not really useful (since it only takes in account the original text
from the noteable).
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
Diffstat (limited to 'spec/models/note_spec.rb')
-rw-r--r-- | spec/models/note_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/note_spec.rb b/spec/models/note_spec.rb index ddacba58261..9037992bb08 100644 --- a/spec/models/note_spec.rb +++ b/spec/models/note_spec.rb @@ -22,7 +22,7 @@ require 'spec_helper' describe Note do describe 'associations' do it { is_expected.to belong_to(:project) } - it { is_expected.to belong_to(:noteable) } + it { is_expected.to belong_to(:noteable).touch(true) } it { is_expected.to belong_to(:author).class_name('User') } end |