mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 14:27:33 -08:00
Redirect the lost password success back to login
This commit is contained in:
parent
3f8f6ad981
commit
16cfdbaa93
|
@ -46,4 +46,15 @@ class PasswordController extends Controller
|
||||||
public function getEmailSubject(){
|
public function getEmailSubject(){
|
||||||
return property_exists($this, 'subject') ? $this->subject : \Lang::get('mail.reset_link');
|
return property_exists($this, 'subject') ? $this->subject : \Lang::get('mail.reset_link');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the response for after the reset link has been successfully sent.
|
||||||
|
*
|
||||||
|
* @param string $response
|
||||||
|
* @return \Symfony\Component\HttpFoundation\Response
|
||||||
|
*/
|
||||||
|
protected function getSendResetLinkEmailSuccessResponse($response)
|
||||||
|
{
|
||||||
|
return redirect()->route('login')->with('status', trans($response));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue