2020-03-28 04:46:50 +01:00
|
|
|
<?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()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return true; /* Return something that will check if setup has been completed, like Ninja::hasCompletedSetup() */
|
2020-03-28 04:46:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'host' => ['required'],
|
|
|
|
'database' => ['required'],
|
|
|
|
'username' => ['required'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|