0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-17 11:03:46 +02:00

Just say yes to OPTIONS requests, since we want to turn on CORS headers for all paths

This commit is contained in:
Erik Johnston 2014-08-12 17:13:14 +01:00
parent f99168de06
commit 4add1c70e9

View file

@ -96,6 +96,11 @@ class TwistedHttpServer(HttpServer, resource.Resource):
path.
"""
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
# and path regex match
for path_entry in self.path_regexs.get(request.method, []):