Just say yes to OPTIONS requests, since we want to turn on CORS headers for all paths
parent
f99168de06
commit
4add1c70e9
|
@ -96,6 +96,11 @@ class TwistedHttpServer(HttpServer, resource.Resource):
|
||||||
path.
|
path.
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
|
# Just say yes to OPTIONS.
|
||||||
|
if request.method == "OPTIONS":
|
||||||
|
self._send_response(request, 200, {})
|
||||||
|
return
|
||||||
|
|
||||||
# Loop through all the registered callbacks to check if the method
|
# Loop through all the registered callbacks to check if the method
|
||||||
# and path regex match
|
# and path regex match
|
||||||
for path_entry in self.path_regexs.get(request.method, []):
|
for path_entry in self.path_regexs.get(request.method, []):
|
||||||
|
|
Loading…
Reference in New Issue