mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 08:43:19 +01:00
34 lines
713 B
PHP
34 lines
713 B
PHP
<?php
|
|
|
|
namespace App\Api\v1\Requests;
|
|
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class TwoFAccountDynamicRequest 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()
|
|
{
|
|
$rules = Arr::has($this->validationData(), 'uri')
|
|
? (new TwoFAccountUriRequest)->rules()
|
|
: (new TwoFAccountStoreRequest)->rules();
|
|
|
|
return $rules;
|
|
}
|
|
} |