52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
 | 
						|
namespace BookStack\Http\Controllers\Auth;
 | 
						|
 | 
						|
use BookStack\Http\Controllers\Controller;
 | 
						|
use Illuminate\Foundation\Auth\ResetsPasswords;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
 | 
						|
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;
 | 
						|
 | 
						|
    protected $redirectTo = '/';
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new controller instance.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
        $this->middleware('guest');
 | 
						|
        parent::__construct();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the response for a successful password reset.
 | 
						|
     *
 | 
						|
     * @param Request $request
 | 
						|
     * @param string $response
 | 
						|
     * @return \Illuminate\Http\Response
 | 
						|
     */
 | 
						|
    protected function sendResetResponse(Request $request, $response)
 | 
						|
    {
 | 
						|
        $message = trans('auth.reset_password_success');
 | 
						|
        session()->flash('success', $message);
 | 
						|
        return redirect($this->redirectPath())
 | 
						|
            ->with('status', trans($response));
 | 
						|
    }
 | 
						|
}
 |