17 lines
327 B
Ruby
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
|