Module: WithReminders::ClassMethods

Defined in:
app/models/concerns/with_reminders.rb

Instance Method Summary collapse

Instance Method Details

#remindableObject



54
55
56
57
58
# File 'app/models/concerns/with_reminders.rb', line 54

def remindable
  where('accepts_reminders  and email is not null
                            and last_organization_id is not null
                            and (last_submission_date < ? or last_submission_date is null)', reminder_frequency.days.ago)
end

#reminder_frequencyObject

The frequency of reminders, expressed in days



61
62
63
# File 'app/models/concerns/with_reminders.rb', line 61

def reminder_frequency
  Rails.configuration.reminder_frequency
end