mirror of
https://github.com/System-End/identity-vault.git
synced 2026-04-19 19:45:08 +00:00
add rails_pulse crons
This commit is contained in:
parent
14ee4700f2
commit
506bd073da
1 changed files with 8 additions and 0 deletions
|
|
@ -3,6 +3,14 @@ Rails.application.configure do
|
|||
expire_draft_aadhaar_verifications: {
|
||||
cron: "*/5 * * * *", # Run every 5 minutes
|
||||
class: "Verification::ExpireDraftAadhaarVerificationsJob"
|
||||
},
|
||||
rails_pulse_summary: {
|
||||
cron: "5 * * * *", # Run 5 minutes past every hour
|
||||
class: "RailsPulse::SummaryJob"
|
||||
},
|
||||
rails_pulse_cleanup: {
|
||||
cron: "0 1 * * *", # Run daily at 1:00 AM
|
||||
class: "RailsPulse::CleanupJob"
|
||||
}
|
||||
}
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue