Remamed new_node to node. shorter and descriptive.

This commit is contained in:
Pablo Revilla
2025-11-24 09:25:09 -08:00
parent a71f371c85
commit 4a5b982e6f
+2 -2
View File
@@ -202,9 +202,9 @@ async def redirect_packet_list(request):
# redirect for backwards compatibility
@routes.get("/packet/{packet_id}")
async def redirect_packet_list(request):
async def redirect_packet(request):
packet_id = request.match_info["packet_id"]
raise web.HTTPFound(location=f"/new_packet/{packet_id}")
raise web.HTTPFound(location=f"/packet/{packet_id}")
@routes.get("/net")
async def net(request):