10 lines
237 B
Ruby
10 lines
237 B
Ruby
module Jobs
|
|
class MailAlsoCommented
|
|
extend ResqueJobLogging
|
|
@queue = :mail
|
|
def self.perform(recipient_id, sender_id, comment_id)
|
|
Notifier.also_commented(recipient_id, sender_id, comment_id).deliver
|
|
end
|
|
end
|
|
end
|
|
|