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>
33 lines
701 B
PHP
33 lines
701 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Setup;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class CheckDatabaseRequest 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 [
|
|
'host' => ['required'],
|
|
'database' => ['required'],
|
|
'username' => ['required'],
|
|
];
|
|
}
|
|
}
|