mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
750a0ba1b2
Replace action read/write to readAcp/writeAcp for handlers with acl query https://github.com/seaweedfs/seaweedfs/issues/4519 Co-authored-by: Konstantin Lebedev <9497591+kmlebedev@users.noreply.github.co>
16 lines
399 B
Go
16 lines
399 B
Go
package s3_constants
|
|
|
|
const (
|
|
ACTION_READ = "Read"
|
|
ACTION_READ_ACP = "ReadAcp"
|
|
ACTION_WRITE = "Write"
|
|
ACTION_WRITE_ACP = "WriteAcp"
|
|
ACTION_ADMIN = "Admin"
|
|
ACTION_TAGGING = "Tagging"
|
|
ACTION_LIST = "List"
|
|
|
|
SeaweedStorageDestinationHeader = "x-seaweedfs-destination"
|
|
MultipartUploadsFolder = ".uploads"
|
|
FolderMimeType = "httpd/unix-directory"
|
|
)
|