18 lines
302 B
Ruby
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
|