authorization: restrict CORS headers on non-options requests
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
60d6c748ef
commit
aa9641024a
|
@ -613,6 +613,7 @@ class Authorization:
|
|||
if req_hdlr is None:
|
||||
return
|
||||
req_hdlr.set_header("Access-Control-Allow-Origin", origin)
|
||||
if req_hdlr.request.method == "OPTIONS":
|
||||
req_hdlr.set_header(
|
||||
"Access-Control-Allow-Methods",
|
||||
"GET, POST, PUT, DELETE, OPTIONS")
|
||||
|
|
Loading…
Reference in New Issue