Skip to content

Commit

Permalink
Merge pull request #15756 from Godmartinz/cc-email-array
Browse files Browse the repository at this point in the history
changes `admin_cc_email` validation to allow an array
  • Loading branch information
snipe authored Oct 30, 2024
2 parents f68df1f + bd23772 commit 73e8f16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Requests/StoreNotificationSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function rules(): array
{
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',
Expand Down

0 comments on commit 73e8f16

Please sign in to comment.