diaspora/app/models/notifications/reshared.rb
2011-10-09 23:34:03 -05:00

18 lines
304 B
Ruby

class Notifications::Reshared < Notification
def mail_job
Jobs::Mail::Reshared
#Jobs::Mail::Liked
end
def popup_translation_key
'notifications.reshared'
end
def deleted_translation_key
'notifications.reshared_post_deleted'
end
def linked_object
self.target
end
end