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

18 lines
302 B
Ruby

class Notifications::Reshared < Notification
def mail_job
Job::Mail::Reshared
#Job::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