summaryrefslogtreecommitdiff
path: root/app/services/notification_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/notification_service.rb')
-rw-r--r--app/services/notification_service.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/services/notification_service.rb b/app/services/notification_service.rb
index ab5a653d5c0..cfed7964c37 100644
--- a/app/services/notification_service.rb
+++ b/app/services/notification_service.rb
@@ -133,11 +133,13 @@ class NotificationService
# Add all users participating in the thread (author, assignee, comment authors)
participants =
- if target.is_a?(Commit)
+ if target.respond_to?(:participants)
+ target.participants
+ elsif target.is_a?(Commit)
author_ids = Note.for_commit_id(target.id).pluck(:author_id).uniq
User.where(id: author_ids)
else
- target.participants
+ note.mentioned_users
end
recipients = recipients.concat(participants)