diaspora/app/models/jobs/mail_comment_on_post.rb
2011-07-02 12:05:26 -07:00

9 lines
216 B
Ruby

module Job
class MailCommentOnPost < 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