Add access to wachter op (#21)

This commit is contained in:
malkoas 2022-08-15 13:10:44 +03:00 committed by GitHub
parent 5628c61f5e
commit 945ea9f89a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -449,6 +449,18 @@ struct WachterOperation {
*/
2: optional string service_name
3: optional Entity party
4: optional set<Access> access
}
struct Access {
/**
* Например:
* - "claim-management"
* - "private-api"
* - ...
*/
1: optional string id
2: optional set<EntityID> roles
}