Updated

app/jobs / notify_creator_that_moderation_is_delayed_job.rb

A
10 lines of codes
1 methods
7.4 complexity/method
1 churn
7.4 complexity
0 duplications
class NotifyCreatorThatModerationIsDelayedJob < EmailJob
  1. NotifyCreatorThatModerationIsDelayedJob has no descriptive comment
self.mailer = PetitionMailer self.email = :notify_creator_that_moderation_is_delayed queue_as :low_priority def perform(signature, subject, body) mailer.send(email, signature, subject, body).deliver_now end end