Commit db552774ebde0012d14bc2888878f1d09203c8bc

Thomas de Grivel 2024-12-11T21:53:27

fix routes

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/httpd/fx/config/routes.kc3 b/httpd/fx/config/routes.kc3
index 4e8418a..a34d3e0 100644
--- a/httpd/fx/config/routes.kc3
+++ b/httpd/fx/config/routes.kc3
@@ -4,6 +4,6 @@ def_route("/fx/", FXController.fx_route)
 def_route("/tags/", FXController.tags_route)
 def_route("/properties/", FXController.properties_route)
 
-def_static_route("/file", "./fx/", 1)
+HTTPd.Route.def_static_route("/file", "./fx/", 1)
 
-def_static_route("", "./static/", 0)
+HTTPd.Route.def_static_route("", "./static/", 0)