s3: Added support for "List" action in weed s3 -config=... in the config file.

fix https://github.com/chrislusf/seaweedfs/issues/1511
This commit is contained in:
Chris Lu
2020-10-07 23:22:35 -07:00
parent a8624c2e4f
commit e91b9c85a2
2 changed files with 13 additions and 11 deletions

View File

@@ -16,9 +16,11 @@ import (
type Action string
const (
ACTION_READ = "Read"
ACTION_WRITE = "Write"
ACTION_ADMIN = "Admin"
ACTION_READ = "Read"
ACTION_WRITE = "Write"
ACTION_ADMIN = "Admin"
ACTION_TAGGING = "Tagging"
ACTION_LIST = "List"
)
type Iam interface {