diaspora/app/models/job/mail/comment_on_post.rb

11 lines
244 B
Ruby

module Job
module Mail
class CommentOnPost < Base
@queue = :mail
def self.perform(recipient_id, sender_id, comment_id)
Notifier.comment_on_post(recipient_id, sender_id, comment_id).deliver
end
end
end
end