From bd23772fe96dc33db62c0fd286a095d4c99e2067 Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Wed, 30 Oct 2024 11:42:15 -0700 Subject: [PATCH] changes cc_email validation to allow array --- 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 db7e8a0fe..13ce5478e 100644 --- a/app/Http/Requests/StoreNotificationSettings.php +++ b/app/Http/Requests/StoreNotificationSettings.php @@ -25,7 +25,7 @@ class StoreNotificationSettings extends FormRequest { return [ 'alert_email' => 'email_array|nullable', - 'admin_cc_email' => 'email|nullable', + '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',