You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Service of type ServiceAPI allows read/write/read-match/write-match permissions.
It should be extended to allow explicit permissions as standard request methods, ie: GET, POST, DELETE, PUT, etc. since this is what it already filters, but combining multiple method types under read/write categories
For backward compatibility reasons, the original 4 permissions should remain.
The service would then need to validate for example that GET request is granted access if either combination between explicit GET or read-category (on any parent route) or GET-match/read-match (on exact route) is given.
An admin who desires to restrict more granular permissions would have more flexibility to do so with whichever variant better fits his need.
The text was updated successfully, but these errors were encountered:
Service of type
ServiceAPI
allowsread
/write
/read-match
/write-match
permissions.It should be extended to allow explicit permissions as standard request methods, ie:
GET
,POST
,DELETE
,PUT
, etc. since this is what it already filters, but combining multiple method types under read/write categoriesFor backward compatibility reasons, the original 4 permissions should remain.
The service would then need to validate for example that
GET
request is granted access if either combination between explicitGET
orread
-category (on any parent route) orGET-match
/read-match
(on exact route) is given.An admin who desires to restrict more granular permissions would have more flexibility to do so with whichever variant better fits his need.
The text was updated successfully, but these errors were encountered: