2015-07-12 21:01:42 +02:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 20:31:09 +02:00
|
|
|
namespace BookStack\Http\Controllers\Auth;
|
2015-07-12 21:01:42 +02:00
|
|
|
|
2015-09-10 20:31:09 +02:00
|
|
|
use BookStack\Http\Controllers\Controller;
|
2016-09-17 19:22:04 +02:00
|
|
|
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
2015-07-12 21:01:42 +02:00
|
|
|
|
2016-09-17 19:22:04 +02:00
|
|
|
class ForgotPasswordController extends Controller
|
2015-07-12 21:01:42 +02:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Password Reset Controller
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2016-09-17 19:22:04 +02:00
|
|
|
| This controller is responsible for handling password reset emails and
|
|
|
|
| includes a trait which assists in sending these notifications from
|
|
|
|
| your application to your users. Feel free to explore this trait.
|
2015-07-12 21:01:42 +02:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-09-17 19:22:04 +02:00
|
|
|
use SendsPasswordResetEmails;
|
2015-08-23 16:46:02 +02:00
|
|
|
|
2015-07-12 21:01:42 +02:00
|
|
|
/**
|
2016-09-17 19:22:04 +02:00
|
|
|
* Create a new controller instance.
|
|
|
|
*
|
|
|
|
* @return void
|
2015-07-12 21:01:42 +02:00
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('guest');
|
2016-09-17 19:22:04 +02:00
|
|
|
parent::__construct();
|
2015-07-12 21:01:42 +02:00
|
|
|
}
|
2016-09-17 19:22:04 +02:00
|
|
|
}
|