Roles : Customs permissions

Hi

Is it possible to add customs permissions on a Role ?

For example I want to create a role that can only list proxies beginning by "max"

{   
    "path": "/applications/max*",
    "permissions": ["put", "get"] 
}

Regards

Maxime

1 1 114
1 REPLY 1

You can add custom permissions, yes.

However, you cannot use a "file glob" path.

This is ok

    "path": "/applications/*",

This is not ok

    "path": "/applications/max*",

It WOULD be really nice to have the ability to have a regex there. That would solve a lot of problems.

But today, not possible.