2023-12-04 08:14:52 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
2023-12-06 08:27:18 +01:00
|
|
|
namespace App\Http\Requests\Nordigen;
|
2023-12-04 08:14:52 +01:00
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
|
2023-12-08 18:46:12 +01:00
|
|
|
class ConnectNordigenRequest extends Request
|
2023-12-04 08:14:52 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2023-12-08 18:42:06 +01:00
|
|
|
'institutionId' => 'required|string',
|
|
|
|
'hash' => 'required|string', // One Time Token
|
|
|
|
'redirectUri' => 'string', // TODO: @turbo124 @todo validate, that this is a url without / at the end
|
2023-12-04 08:14:52 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|