diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-04-17 11:03:33 +0200 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-04-17 11:03:33 +0200 |
commit | 630e879066156e8593a8b42b531ef727227c60bf (patch) | |
tree | 287b45affe4feb4129a10f2dbf379c3ce9c77fbf /app/models/snippet.rb | |
parent | 990b476faae2720321d9ad604fab52efc25bf82f (diff) | |
download | gitlab-ce-630e879066156e8593a8b42b531ef727227c60bf.tar.gz |
Clean up code somewhat.better-commit-mentions
Diffstat (limited to 'app/models/snippet.rb')
-rw-r--r-- | app/models/snippet.rb | 6 |
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 |