From 0d227954c5fffb1c04219886a01cd937d0878bcd Mon Sep 17 00:00:00 2001 From: Yi EungJun Date: Thu, 12 May 2016 14:26:39 +0900 Subject: [PATCH] docs: Remove RequestStatusCode The requests doesn't include RequestStatusCode field. Signed-off-by: Yi EungJun --- docs/extend/plugins_authorization.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/extend/plugins_authorization.md b/docs/extend/plugins_authorization.md index 140db71c35..07840b144d 100644 --- a/docs/extend/plugins_authorization.md +++ b/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"