Closed jaonoctus closed 7 years ago
@flyingluscas @vinicius73 @vedovelli I guess so, because the json response structure has changed (but at least now it's the right way).
Before:
[
'token',
'token_ttl',
'user' => [
'id',
'name',
'email',
],
]
After:
[
'token',
'token_ttl',
'user' => [
'data' => [
'id',
'name',
'email',
],
],
]
@JaoNoctus I think so too
@JaoNoctus Thanks for this PR! I'll follow up from this point on!
commit 6228fa9917d8d38af1a24b2bbe8a940f91eb52f6 fix BC from this PR
@vinicius73 @vedovelli will this change affect in any way the client side?