fixed Lua Runtime. Plugins now have priority for hooks and POST for routes if requested. also changed the CSS for main.css to color #1e1e1e for darkmode body

This commit is contained in:
2025-10-06 11:22:05 +02:00
parent 4a03e37aed
commit 06217188e1
15 changed files with 1180 additions and 1262 deletions

View File

@@ -0,0 +1,7 @@
add_post_route("/lua/post", function(req)
local data = req.data or {}
log("Data received from " .. tostring(data))
return 200,
{["Content-Type"] = "application/text"},
tostring(data)
end)