Procházet zdrojové kódy

Merge pull request #22683 from npcode/docs-no-request-status

docs: Remove RequestStatusCode
Sebastiaan van Stijn před 9 roky
rodič
revize
2ae863c28f
1 změnil soubory, kde provedl 1 přidání a 3 odebrání
  1. 1 3
      docs/extend/plugins_authorization.md

+ 1 - 3
docs/extend/plugins_authorization.md

@@ -156,8 +156,7 @@ should implement the following two methods:
     "RequestMethod":     "The HTTP method",
     "RequestURI":        "The HTTP request URI",
     "RequestBody":       "Byte array containing the raw HTTP request body",
-    "RequestHeader":     "Byte array containing the raw HTTP request header as a map[string][]string ",
-    "RequestStatusCode": "Request status code"
+    "RequestHeader":     "Byte array containing the raw HTTP request header as a map[string][]string "
 }
 ```
 
@@ -182,7 +181,6 @@ should implement the following two methods:
     "RequestURI":        "The HTTP request URI",
     "RequestBody":       "Byte array containing the raw HTTP request body",
     "RequestHeader":     "Byte array containing the raw HTTP request header as a map[string][]string",
-    "RequestStatusCode": "Request status code",
     "ResponseBody":      "Byte array containing the raw HTTP response body",
     "ResponseHeader":    "Byte array containing the raw HTTP response header as a map[string][]string",
     "ResponseStatusCode":"Response status code"