Hi
I’m facing to difficulties to block access to some URL inside policy
Ex
with 2 urls service
- path/company/pdf/template (get)
- path/company/pdf/tools/infoversion (get)
"access_rights": {
"a693c391-f67e-4bb0-bb26-4d71664ddd81" : {
"allowed_urls": [
{
"path": "/company/pdf/template",
"methods": ["GET"]
}
],
with this definition inside policy I was thinking to allow only /company/pdf/template access but both URL are still available
Question : if an URL isn’t inside “allowed_urls”: [ ] is it forbidden?
How to process?
Thanks
S.