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:
authorValery Sizov <valery@gitlab.com>2017-05-04 20:22:03 +0300
committerValery Sizov <valery@gitlab.com>2017-05-04 20:22:03 +0300
commitfc464f1ff27734df81f7f85cbc23e93902c97cda (patch)
treee4dc7d6caba428fa9d86fa85f6e9476c310f6b09 /app/services/system_note_service.rb
parent0f2a9681a318e5d27ef4e45195f2ac4b75f351dc (diff)
Multiple issue assignee: fixed services/issues/update_service by using new NoteSummary
Diffstat (limited to 'app/services/system_note_service.rb')
-rw-r--r--app/services/system_note_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/system_note_service.rb b/app/services/system_note_service.rb
index 898c69b3f8c..1dee791cfd6 100644
--- a/app/services/system_note_service.rb
+++ b/app/services/system_note_service.rb
@@ -84,7 +84,7 @@ module SystemNoteService
"assigned to #{issue.assignees.map(&:to_reference).to_sentence}"
end
- create_note(noteable: issue, project: project, author: author, note: body)
+ NoteSummary.new(issue, project, author, body, action: 'assignee')
end
# Called when one or more labels on a Noteable are added and/or removed