This commit is contained in:
Saeed Vaziry
2025-05-19 22:22:21 +02:00
parent 04d52f6742
commit 61faaabb85
17 changed files with 544 additions and 92 deletions

View File

@ -576,7 +576,26 @@
90,
],
'tag_colors' => [
'taggable_types' => [
\App\Models\Server::class,
\App\Models\Site::class,
],
'user_roles' => [
\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',
],
'colors' => [
'slate',
'gray',
'red',
@ -597,22 +616,4 @@
'pink',
'rose',
],
'taggable_types' => [
\App\Models\Server::class,
\App\Models\Site::class,
],
'user_roles' => [
\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',
],
];