Class: CheckAcl

Inherits:
Service show all
Defined in:
lib/s3sec/services/check_acl.rb

Instance Method Summary collapse

Methods inherited from Service

call

Instance Method Details

#call(obj_acl) ⇒ Object



3
4
5
6
7
# File 'lib/s3sec/services/check_acl.rb', line 3

def call(obj_acl)
  obj_acl.grants.any? do |grant|
   !!grant.grantee.uri.to_s.match(/AllUsers/)
  end
end