@@ -125,7 +125,6 @@ class Index extends Backend
$force=0;
$userId = '';
$res = $this->auth->login($username, $password, (bool)$keep,$force,$userId);
- var_dump($res);die;
if ($res === true) {
if($force == 1)
{
@@ -376,6 +376,7 @@ class Auth extends \ba\Auth
$info = array_intersect_key($info, array_flip($this->getAllowFields()));
$info['token'] = $this->getToken();
$info['refresh_token'] = $this->getRefreshToken();
+ var_dump($info);die;
return $info;
}