From 4b3794cbb952c5d41395d11e172e5b3b9fe51a3e Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Mon, 24 May 2021 14:20:26 +0300 Subject: [PATCH] [#157] container: Add session token to GetExtendedACLResponse body Extended ACL can be set within a session. The presence of a session token in the GET response body allows you to reflect this fact. Add `session_token` field of `session.SessionToken` type to `container.GetExtendedACLResponse.Body` message. Signed-off-by: Leonard Lyubich --- container/service.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/container/service.proto b/container/service.proto index 0eb28a7..3b088b6 100644 --- a/container/service.proto +++ b/container/service.proto @@ -298,6 +298,9 @@ message GetExtendedACLResponse { // Signature of stable-marshalled Extended ACL according to RFC-6979 neo.fs.v2.refs.Signature signature = 2; + + // Session token if Extended ACL was set within a session + neo.fs.v2.session.SessionToken session_token = 3; } // Body of get extended acl response message. Body body = 1;