Updated

app/jobs / email_threshold_reminder_job.rb

A
7 lines of codes
1 methods
1.0 complexity/method
2 churn
1.0 complexity
0 duplications
class EmailThresholdReminderJob < ApplicationJob
  1. EmailThresholdReminderJob has no descriptive comment
queue_as :high_priority def perform
  1. EmailThresholdReminderJob#perform doesn't depend on instance state (maybe move it to another class?)
EmailReminder.threshold_email_reminder end end