summaryrefslogtreecommitdiff
path: root/app/models/snippet.rb
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-04-17 11:03:33 +0200
committerDouwe Maan <douwe@gitlab.com>2015-04-17 11:03:33 +0200
commit630e879066156e8593a8b42b531ef727227c60bf (patch)
tree287b45affe4feb4129a10f2dbf379c3ce9c77fbf /app/models/snippet.rb
parent990b476faae2720321d9ad604fab52efc25bf82f (diff)
downloadgitlab-ce-630e879066156e8593a8b42b531ef727227c60bf.tar.gz
Clean up code somewhat.better-commit-mentions
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