ash 2 лет назад
Родитель
Сommit
491923a0f6
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Backend/Sources/View/view_manager.py

+ 1 - 1
Backend/Sources/View/view_manager.py

@@ -70,7 +70,7 @@ def after_request(response : flask.Response):
     # and the javascript call some request on another server (origin 2), typically our API.
     header['Access-Control-Allow-Origin']  = '*'
     header['Access-Control-Allow-Methods'] = 'GET,DELETE,UPDATE,HEAD,OPTIONS,POST,PUT,PATCH'
-    header['Access-Control-Allow-Headers'] = 'Origin, X-Requested-With, Content-Type, Accept, Authorization'
+    header['Access-Control-Allow-Headers'] = 'Origin, X-Requested-With, Content-Type, Accept, Authorization, x-Auth-Token'
 
 
     logger.debug(response.__dict__)