From 945ea9f89a739eccb2ceb47546ea4f1181d65817 Mon Sep 17 00:00:00 2001 From: malkoas <41993717+malkoas@users.noreply.github.com> Date: Mon, 15 Aug 2022 13:10:44 +0300 Subject: [PATCH] Add access to wachter op (#21) --- proto/context_v1.thrift | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/proto/context_v1.thrift b/proto/context_v1.thrift index 0a22349..9e3b2af 100644 --- a/proto/context_v1.thrift +++ b/proto/context_v1.thrift @@ -449,6 +449,18 @@ struct WachterOperation { */ 2: optional string service_name 3: optional Entity party + 4: optional set access +} + +struct Access { + /** + * Например: + * - "claim-management" + * - "private-api" + * - ... + */ + 1: optional string id + 2: optional set roles }