diff --git a/backoffice/app/app.py b/backoffice/app/app.py index 05a3ed6..d71a03b 100644 --- a/backoffice/app/app.py +++ b/backoffice/app/app.py @@ -84,6 +84,11 @@ def rows_json(rows): return [{k: jsonable(v) for k, v in r.items()} for r in rows] +@app.get("/owner/_debug_headers") +def _debug_headers(): + return jsonify({"scheme": request.scheme, "headers": dict(request.headers)}) + + @app.get("/healthz") def healthz(): try: