Added option to use reply-to header for replies

This commit is contained in:
Will Browning
2021-02-24 12:18:38 +00:00
parent 9a83bf7c2a
commit 6920570384
13 changed files with 995 additions and 648 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UpdateUseReplyToRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'use_reply_to' => 'required|boolean'
];
}
}