2022-05-25 13:41:46 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Api\v1\Requests;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
|
|
|
|
class TwoFAccountImportRequest extends FormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
|
|
|
return Auth::check();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2022-10-07 18:58:48 +02:00
|
|
|
'payload' => 'required_without:file|string',
|
2022-11-22 15:15:52 +01:00
|
|
|
'file' => 'required_without:payload|mimes:txt,json,csv',
|
2022-05-25 13:41:46 +02:00
|
|
|
];
|
|
|
|
}
|
2022-11-22 15:15:52 +01:00
|
|
|
}
|