Files
seaweedfs/weed/s3api/s3api_object_handlers_skip.go

22 lines
516 B
Go
Raw Normal View History

package s3api
import (
"net/http"
)
// GetObjectAclHandler Get object ACL
2021-10-11 15:03:56 +05:00
// https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAcl.html
func (s3a *S3ApiServer) GetObjectAclHandler(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusNoContent)
}
// PutObjectAclHandler Put object ACL
// https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectAcl.html
func (s3a *S3ApiServer) PutObjectAclHandler(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusNoContent)
}