Parcourir la source

Anpassungen 2024 TODO

Reisacher C7 il y a 1 an
Parent
commit
fcd5ed19b6
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      config/reisacher.json
  2. 1 1
      webservice/file_io.py

+ 1 - 1
config/reisacher.json

@@ -123,7 +123,7 @@
                 true,
                 true,
                 true,
-                false,
+                true,
                 false
             ]
         },

+ 1 - 1
webservice/file_io.py

@@ -137,7 +137,7 @@ def save(filename):
 @bp.route("/config", methods=["GET"])
 def config():
     cfg = ConfigLoad(str(config_dir))
-    return Response(response=json.dumps(cfg.load_file("reisacher", "2023")), mimetype="application/json")
+    return Response(response=json.dumps(cfg.load_file("reisacher", "2024")), mimetype="application/json")
 
 
 @bp.route("/accounts/<period>", methods=["GET"])