Skip to content

Commit 73e8f16

Browse files
authored
Merge pull request #15756 from Godmartinz/cc-email-array
changes `admin_cc_email` validation to allow an array
2 parents f68df1f + bd23772 commit 73e8f16

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)