fix: fix login route already set by Laravel now (#3802)

This commit is contained in:
Alexis Saettler
2020-04-08 09:28:34 +02:00
committed by GitHub
parent 73b423ec2c
commit df166d62e6
8 changed files with 9 additions and 8 deletions
@@ -44,7 +44,7 @@ class InvitationController extends Controller
public function show($key)
{
if (Auth::check()) {
return redirect()->route('login');
return redirect()->route('loginRedirect');
}
$invitation = Invitation::where('invitation_key', $key)