This commit is contained in:
2018-11-06 15:55:22 +00:00
parent 7d198a4fae
commit 1b16268a0f
3 changed files with 9 additions and 6 deletions

View File

@@ -143,11 +143,12 @@ namespace AyaNova.Api.Controllers
//and remove the issued, expires id etc so that all that is returned is an encoded token with that info in it
return Ok(new ApiOkResponse(new
{
ok = 1,
issued = iat,
expires = exp,
token = token,
id = u.Id
// ok = 1,
// issued = iat,
// expires = exp,
token = token
//,
//id = u.Id
}));
}
}