Skip to content

Commit afabda9

Browse files
committed
Remove greater than 0 for alert threshold - fixes FD-47040
Signed-off-by: snipe <[email protected]>
1 parent 16420b1 commit afabda9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Http/Requests/StoreNotificationSettings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function rules(): array
2626
return [
2727
'alert_email' => 'email_array|nullable',
2828
'admin_cc_email' => 'email_array|nullable',
29-
'alert_threshold' => 'numeric|nullable|gt:0',
29+
'alert_threshold' => 'numeric|nullable',
3030
'alert_interval' => 'numeric|nullable|gt:0',
3131
'audit_warning_days' => 'numeric|nullable',
3232
'due_checkin_days' => 'numeric|nullable|gt:0',

0 commit comments

Comments
 (0)