1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Requests/Setup/CheckDatabaseRequest.php

44 lines
993 B
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Http\Requests\Setup;
use App\Http\Requests\Request;
class CheckDatabaseRequest extends Request
{
/**
* 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 [
2020-12-08 14:21:00 +01:00
'db_host' => ['required'],
2021-01-04 13:36:47 +01:00
'db_port' => ['required'],
2020-12-08 14:21:00 +01:00
'db_database' => ['required'],
'db_username' => ['required'],
];
}
}