Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DeleteObjectHandler (0.14 sec)

  1. cmd/object-handlers.go

    	hash.TransferChecksumHeader(w, r)
    	writeSuccessResponseHeadersOnly(w)
    }
    
    // Delete objectAPIHandlers
    
    // DeleteObjectHandler - delete an object
    func (api objectAPIHandlers) DeleteObjectHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "DeleteObject")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	vars := mux.Vars(r)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 05 05:16:15 UTC 2024
    - 117.4K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    			objectName: objectName,
    			accessKey:  "Invalid-AccessKey",
    			secretKey:  credentials.SecretKey,
    
    			expectedRespStatus: http.StatusForbidden,
    		},
    	}
    
    	// Iterating over the cases, call DeleteObjectHandler and validate the HTTP response.
    	for i, testCase := range testCases {
    		var req, reqV2 *http.Request
    		// initialize HTTP NewRecorder, this records any mutations to response writer inside the handler.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 20:10:44 UTC 2024
    - 163.2K bytes
    - Viewed (0)
Back to top