s3 api add default response for GetBucketVersioning

This commit is contained in:
Konstantin Lebedev
2023-11-13 15:25:17 +05:00
committed by Chris Lu
parent b05d682c48
commit 7f6152f130
2 changed files with 20 additions and 0 deletions

View File

@@ -222,6 +222,9 @@ func (s3a *S3ApiServer) registerRouter(router *mux.Router) {
// GetBucketRequestPayment
bucket.Methods("GET").HandlerFunc(track(s3a.iam.Auth(s3a.cb.Limit(s3a.GetBucketRequestPaymentHandler, ACTION_READ)), "GET")).Queries("requestPayment", "")
// GetBucketVersioning
bucket.Methods("GET").HandlerFunc(track(s3a.iam.Auth(s3a.cb.Limit(s3a.GetBucketVersioningHandler, ACTION_READ)), "GET")).Queries("versioning", "")
// ListObjectsV2
bucket.Methods("GET").HandlerFunc(track(s3a.iam.Auth(s3a.cb.Limit(s3a.ListObjectsV2Handler, ACTION_LIST)), "LIST")).Queries("list-type", "2")