Add CORS_origins key to configuration

This commit is contained in:
Matthias
2020-06-24 20:32:19 +02:00
parent 112906458f
commit b77a105778
8 changed files with 34 additions and 1 deletions

View File

@@ -90,7 +90,9 @@ class ApiServer(RPC):
self._config = freqtrade.config
self.app = Flask(__name__)
self._cors = CORS(self.app,
resources={r"/api/*": {"supports_credentials": True, }}
resources={r"/api/*": {
"supports_credentials": True,
"origins": self._config['api_server'].get('CORS_origins', [])}}
)
# Setup the Flask-JWT-Extended extension