diff --git a/app.py b/app.py index d42012fe..b390bac5 100644 --- a/app.py +++ b/app.py @@ -124,7 +124,7 @@ async def root(): @app.get("/api/test", tags=["General"]) async def getTest(): - return "OK 1.5" + return f"Status: OK. Alowed origins: {APP_CONFIG.get('APP_ALLOWED_ORIGINS')}" @app.options("/{fullPath:path}", tags=["General"]) async def optionsRoute(fullPath: str):