Removed tracking

This commit is contained in:
Graham Campbell
2015-08-01 17:07:06 +01:00
parent 2425682381
commit fb127fb861
36 changed files with 2 additions and 607 deletions

View File

@@ -57,11 +57,9 @@ class AuthController extends AbstractController
return Redirect::route('two-factor');
}
// We probably wan't to add support for "Remember me" here.
// We probably want to add support for "Remember me" here.
Auth::attempt(Binput::only(['email', 'password']));
segment_track('Logged In');
return Redirect::intended('dashboard');
}
@@ -122,8 +120,6 @@ class AuthController extends AbstractController
{
Auth::logout();
segment_track('Logged Out');
return Redirect::to('/');
}
}