Sha256: 5df6956778075b56c95866d239b25f9a8532ba4376539ea6830a49302400c383
Contents?: true
Size: 330 Bytes
Versions: 119
Compression:
Stored size: 330 Bytes
Contents
namespace :laboratory do namespace :users do task notify_reminder: :environment do BATCH_SIZE = ENV['MUMUKI_JOB_BATCH_SIZE']&.to_i || 1000 User.remindable.find_each(batch_size: BATCH_SIZE) do |user| user.try_remind_with_lock! end if ApplicationMailer.environment_variables_set? end end end
Version data entries
119 entries across 119 versions & 1 rubygems