diaspora/app/models/notifications/also_commented.rb

17 lines
328 B
Ruby

class Notifications::AlsoCommented < Notification
def mail_job
Jobs::Mail::AlsoCommented
end
def popup_translation_key
'notifications.also_commented'
end
def deleted_translation_key
'notifications.also_commented_deleted'
end
def linked_object
Post.where(:id => self.target_id).first
end
end