2FAuth/app/Http/Requests/WebauthnRenameRequest.php

32 lines
566 B
PHP
Raw Normal View History

<?php
2022-03-15 14:47:07 +01:00
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Support\Facades\Auth;
2022-03-15 14:47:07 +01:00
class WebauthnRenameRequest 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-03-15 14:47:07 +01:00
'name' => 'required|string',
];
}
2022-11-22 15:15:52 +01:00
}