12 lines
262 B
Ruby
12 lines
262 B
Ruby
module Workers
|
|
module Mail
|
|
class CommentOnPost < Base
|
|
sidekiq_options queue: :mail
|
|
|
|
def perform(recipient_id, sender_id, comment_id)
|
|
Notifier.comment_on_post(recipient_id, sender_id, comment_id).deliver_now
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|