Skip to content

Commit bd23772

Browse files
committed
changes cc_email validation to allow array
1 parent f68df1f commit bd23772

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
@@ -25,7 +25,7 @@ public function rules(): array
2525
{
2626
return [
2727
'alert_email' => 'email_array|nullable',
28-
'admin_cc_email' => 'email|nullable',
28+
'admin_cc_email' => 'email_array|nullable',
2929
'alert_threshold' => 'numeric|nullable|gt:0',
3030
'alert_interval' => 'numeric|nullable|gt:0',
3131
'audit_warning_days' => 'numeric|nullable|gt:0',

0 commit comments

Comments
 (0)