forked from TrueCloudLab/frostfs-node
[#271] acl: Add permission to get objects for inner ring
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
782bcadd92
commit
af7ae0ec4c
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ func (a basicACLHelper) SystemAllowed(op eacl.Operation) bool {
|
||||||
// InnerRing nodes, as part of System group.
|
// InnerRing nodes, as part of System group.
|
||||||
func (a basicACLHelper) InnerRingAllowed(op eacl.Operation) bool {
|
func (a basicACLHelper) InnerRingAllowed(op eacl.Operation) bool {
|
||||||
switch op {
|
switch op {
|
||||||
case eacl.OperationSearch, eacl.OperationRangeHash, eacl.OperationHead:
|
case eacl.OperationSearch, eacl.OperationRangeHash, eacl.OperationHead, eacl.OperationGet:
|
||||||
return true
|
return true
|
||||||
default:
|
default:
|
||||||
if n, ok := order[op]; ok {
|
if n, ok := order[op]; ok {
|
||||||
|
|
Loading…
Reference in a new issue