diaspora/app/workers/mail/comment_on_post.rb
2015-02-27 16:58:39 +01:00

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