Toggle map-show
Deploy PBT / deploy (push) Successful in 16s

This commit is contained in:
2026-09-11 16:04:53 +02:00
parent c9f298223b
commit 039e2905dd
6 changed files with 84 additions and 35 deletions
+4
View File
@@ -27,6 +27,10 @@ def create_app():
with app.app_context():
db.create_all()
@app.context_processor
def inject_settings():
return {"show_map": app.config["SHOW_MAP"]}
register_routes(app)
register_cli(app)
return app