Include snippet author in recipients of snippet note notification.

This commit is contained in:
Douwe Maan 2015-04-15 17:06:21 +02:00
parent 959ebbcade
commit 7633d60268
1 changed files with 12 additions and 0 deletions

View File

@ -87,6 +87,18 @@ class Snippet < ActiveRecord::Base
visibility_level
end
def participants(current_user = self.author)
users = []
users << author
notes.each do |note|
users << note.author
mentions << note.mentioned_users(current_user)
end
users.concat(mentions.reduce([], :|)).uniq
end
class << self
def search(query)
where('(title LIKE :query OR file_name LIKE :query)', query: "%#{query}%")