summaryrefslogtreecommitdiff
path: root/app/models/snippet.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/snippet.rb')
-rw-r--r--app/models/snippet.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/app/models/snippet.rb b/app/models/snippet.rb
index 13703f4115f..c11c28805eb 100644
--- a/app/models/snippet.rb
+++ b/app/models/snippet.rb
@@ -90,15 +90,13 @@ class Snippet < ActiveRecord::Base
def participants(current_user = self.author)
users = []
users << author
-
- mentions = []
notes.each do |note|
users << note.author
- mentions << note.mentioned_users(current_user)
+ users.push *note.mentioned_users(current_user)
end
- users.concat(mentions.reduce([], :|)).uniq
+ users.uniq
end
class << self