|
@@ -134,10 +134,10 @@ def save(filename):
|
|
|
return "File saved with new data!"
|
|
|
|
|
|
|
|
|
-@bp.route("/config", methods=["GET"])
|
|
|
-def config():
|
|
|
+@bp.route("/config/<year>", methods=["GET"])
|
|
|
+def config(year):
|
|
|
cfg = ConfigLoad(str(config_dir))
|
|
|
- return Response(response=json.dumps(cfg.load_file("reisacher", "2024")), mimetype="application/json")
|
|
|
+ return Response(response=json.dumps(cfg.load_file("reisacher", year)), mimetype="application/json")
|
|
|
|
|
|
|
|
|
@bp.route("/accounts/<period>", methods=["GET"])
|