2015-07-13 03:01:42 +08:00
|
|
|
<?php
|
|
|
|
|
2015-09-11 02:31:09 +08:00
|
|
|
namespace BookStack\Http\Controllers\Auth;
|
2015-07-13 03:01:42 +08:00
|
|
|
|
2015-09-11 02:31:09 +08:00
|
|
|
use BookStack\Http\Controllers\Controller;
|
2015-07-13 03:01:42 +08:00
|
|
|
use Illuminate\Foundation\Auth\ResetsPasswords;
|
|
|
|
|
2016-09-18 01:22:04 +08:00
|
|
|
class ResetPasswordController extends Controller
|
2015-07-13 03:01:42 +08:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| 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;
|
|
|
|
|
2016-11-12 19:40:54 +08:00
|
|
|
protected $redirectTo = '/';
|
|
|
|
|
2015-07-13 03:01:42 +08:00
|
|
|
/**
|
2016-09-18 01:22:04 +08:00
|
|
|
* Create a new controller instance.
|
|
|
|
*
|
|
|
|
* @return void
|
2015-07-13 03:01:42 +08:00
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('guest');
|
2016-09-18 01:22:04 +08:00
|
|
|
parent::__construct();
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|
2016-11-12 19:40:54 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the response for a successful password reset.
|
|
|
|
*
|
|
|
|
* @param string $response
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
protected function sendResetResponse($response)
|
|
|
|
{
|
2016-12-05 00:51:39 +08:00
|
|
|
$message = trans('auth.reset_password_success');
|
2016-11-12 19:40:54 +08:00
|
|
|
session()->flash('success', $message);
|
|
|
|
return redirect($this->redirectPath())
|
|
|
|
->with('status', trans($response));
|
|
|
|
}
|
2016-09-18 01:22:04 +08:00
|
|
|
}
|