From ea91004e8a9f1b5966ebaf51cdbf1ae351283965 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Thu, 30 Sep 2021 18:39:17 +0300 Subject: [PATCH] [#341] acl: Define public-append rule Signed-off-by: Leonard Lyubich --- pkg/acl/types.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/acl/types.go b/pkg/acl/types.go index a83c8c8..6a7b428 100644 --- a/pkg/acl/types.go +++ b/pkg/acl/types.go @@ -9,4 +9,7 @@ const ( // ReadOnlyBasicRule is a basic ACL value for public-read container. ReadOnlyBasicRule = 0x1FBF8CFF + + // PublicAppendRule is a basic ACL value for public-append container. + PublicAppendRule = 0x1FBF9FFF )