From b6b6a3eec7c0758a0c80e116b051444d91088074 Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 24 Feb 2025 23:46:50 +0000 Subject: [PATCH] Remove req for 0 min Signed-off-by: snipe --- app/Http/Requests/StoreNotificationSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Requests/StoreNotificationSettings.php b/app/Http/Requests/StoreNotificationSettings.php index 13ce5478ed..d7d604c700 100644 --- a/app/Http/Requests/StoreNotificationSettings.php +++ b/app/Http/Requests/StoreNotificationSettings.php @@ -28,7 +28,7 @@ class StoreNotificationSettings extends FormRequest 'admin_cc_email' => 'email_array|nullable', 'alert_threshold' => 'numeric|nullable|gt:0', 'alert_interval' => 'numeric|nullable|gt:0', - 'audit_warning_days' => 'numeric|nullable|gt:0', + 'audit_warning_days' => 'numeric|nullable', 'due_checkin_days' => 'numeric|nullable|gt:0', 'audit_interval' => 'numeric|nullable|gt:0', ];