mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
de9faa9bc2
* Remove StartupCheck from Kernel.php * Real-time database check * Catch the Exception with DB::getPDO * Send test email - feature * Forms Co-authored-by: David Bomba <turbo124@gmail.com>
38 lines
923 B
PHP
38 lines
923 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Setup;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class CheckMailRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return true; /** Return something that will check if setup has been completed, like Ninja::hasCompletedSetup() */
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'driver' => ['required', 'in:smtp,mail,sendmail'],
|
|
'from_name' => ['required'],
|
|
'from_address' => ['required'],
|
|
'username' => ['required'],
|
|
'host' => ['required'],
|
|
'port' => ['required'],
|
|
'encryption' => ['required'],
|
|
'password' => ['required'],
|
|
];
|
|
}
|
|
}
|