diaspora/app/models/notifications/private_message.rb

15 lines
434 B
Ruby

class Notifications::PrivateMessage < Notification
def mail_job
Jobs::Mail::PrivateMessage
end
def popup_translation_key
'notifications.private_message'
end
def self.make_notification(recipient, target, actor, notification_type)
n = notification_type.new(:target => target,
:recipient_id => recipient.id)
target.increase_unread(recipient)
n.actors << actor
n
end
end