2.x - backups

This commit is contained in:
Saeed Vaziry
2024-09-29 17:54:11 +02:00
parent e4fed24498
commit 2e9620409b
35 changed files with 1093 additions and 122 deletions

View File

@ -481,4 +481,13 @@
\App\Enums\UserRole::USER,
\App\Enums\UserRole::ADMIN,
],
'cronjob_intervals' => [
'* * * * *' => 'Every Minute',
'0 * * * *' => 'Hourly',
'0 0 * * *' => 'Daily',
'0 0 * * 0' => 'Weekly',
'0 0 1 * *' => 'Monthly',
'custom' => 'Custom',
],
];