1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-10-02 06:07:11 +02:00
invoiceninja/app/Http/Requests/Setup/CheckMailRequest.php
Benjamin Beganović de9faa9bc2
Work with setup (#3555)
* 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>
2020-03-28 14:46:50 +11:00

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'],
];
}
}