misc_pterodactyl-panel/app/Http/Controllers/Auth/ResetPasswordController.php

53 lines
1.3 KiB
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Http\Controllers\Auth;
2016-11-05 01:50:47 +00:00
use Pterodactyl\Models\User;
use Pterodactyl\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;
class ResetPasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset requests
| and uses a simple trait to include this behavior. You're free to
| explore this trait and override any methods you wish to tweak.
|
*/
use ResetsPasswords;
2017-03-19 23:36:50 +00:00
/**
* The URL to redirect users to after password reset.
*
* @var string
*/
2016-09-04 23:08:46 +00:00
public $redirectTo = '/';
/**
* Create a new controller instance.
*/
public function __construct()
{
$this->middleware('guest');
}
2017-03-19 23:36:50 +00:00
/**
* Return the rules used when validating password reset.
*
* @return array
*/
2016-12-07 22:46:38 +00:00
protected function rules()
{
return [
'token' => 'required',
'email' => 'required|email',
'password' => 'required|confirmed|' . User::PASSWORD_RULES,
];
}
}