finally got auth working

This commit is contained in:
2018-10-15 22:34:24 -05:00
parent f7bb053b05
commit ed4aa6d76a
5 changed files with 1 additions and 132 deletions

View File

@@ -54,7 +54,7 @@ class LoginController extends Controller
$user = $this->createOrGetUser($ssoUser);
auth()->login($user);
auth()->login($user, true);
return redirect()->to('/dashboard');
}