fix: set CORS to * for socketio (#55)

This commit is contained in:
T. van Riel 2021-09-18 22:23:02 +02:00 committed by GitHub
parent 95d199ed9b
commit 574ed747eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,7 +47,7 @@ class ObjectSerializer(json.JSONEncoder):
serializer = ObjectSerializer()
app = web.Application()
sio = socketio.AsyncServer()
sio = socketio.AsyncServer(cors_allowed_origins='*')
sio.attach(app, socketio_path=config.URL_PREFIX + 'socket.io')
routes = web.RouteTableDef()