-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Corrigindo bug de retorno das permissões do usuário #9
Corrigindo bug de retorno das permissões do usuário #9
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
confere o que disse nos comentários e for possível alterar
app/Controller/UserController.php
Outdated
@@ -46,6 +46,12 @@ public function index() | |||
'created_at', | |||
'updated_at' | |||
)->get(); | |||
|
|||
foreach ($user as $key => $value) { | |||
$user[$key]['permissions'] = unserialize($value['permissions']); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aqui provavelmente é uma collection. Como está vando esta lista?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
também é possível fazer isso no ORM.
No model tem o attribute que você pode fazer o cost
olha na doc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aqui provavelmente é uma collection. Como está vando esta lista?
Essas permissions estão sendo salva no banco como uma string, elas estavam sendo mandadas diretamente sem transformar em objeto antes, mas quando eu tiver um tempinho irei dá uma olhada sim na doc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ta apravado
Antes de fechar confere isso
Pode madar um print do response
Ao retornar o usuário, as permissões estavam indo como resposta em forma de texto no padrão normalize do php, alterei para que sejam retornadas em forma de objeto.