authorization icon indicating copy to clipboard operation
authorization copied to clipboard

PSR7 Middleware for authorization

Results 12 authorization issues
Sort by recently updated
recently updated
newest added

I have to update the identity in my code, so I am using $_identity = $this->Authentication->getIdentity(); $data = $_identity->getOriginalData(); if ($data instanceof User) { $data->x = [1]; } $this->Authentication->setIdentity($_identity); I...

bug

When using AuthorizationMiddleware and RequestAuthorizationMiddleware, would it be possible to require that both authorizations are performed and raise an exception if not? If I understand correctly, it is not the...

enhancement