Currently, AirBag supports only authentication. Let's add support for authorization!
What we can do?
Define a mapping between claims to paths. For example:
[
{
"path": "/api/v1/secure"
"claims":
{
"key": "scope",
"value": ["super-secure"]
}
]
Another issues is how you tests your service configuration.
What do you think?