diaspora/app/models/jobs/mail_comment_on_post.rb
2011-01-05 15:04:28 -08:00

10 lines
232 B
Ruby

module Jobs
class MailCommentOnPost
extend ResqueJobLogging
@queue = :mail
def self.perform(recipient_id, sender_id, comment)
Notifier.comment_on_post(recipient_id, sender_id, comment).deliver
end
end
end