9 lines
224 B
Ruby
9 lines
224 B
Ruby
module Job
|
|
class MailAlsoCommented < Base
|
|
@queue = :mail
|
|
def self.perform_delegate(recipient_id, sender_id, comment_id)
|
|
Notifier.also_commented(recipient_id, sender_id, comment_id).deliver
|
|
end
|
|
end
|
|
end
|
|
|