diaspora/app/models/notifications/also_commented.rb
2011-08-25 17:16:09 -07:00

17 lines
327 B
Ruby

class Notifications::AlsoCommented < Notification
def mail_job
Job::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