Files
newznab-tmux/app/Http/Requests/Disable2faPasswordSecurityRequest.php
T

19 lines
340 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class Disable2faPasswordSecurityRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return ['current-password' => 'required'];
}
}