Fixed typo in test view route

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent 3b8a30c7f8
commit 3910c4dc9c

View File

@ -51,6 +51,6 @@ func RegisterRoutes(f *flamego.Flame) {
f.Get("/create", routes.TestGetCreate)
f.Post("/create", binding.Form(forms.TestForm{}), routes.TestPostCreate)
f.Get("{test_id}", routes.TestGetView)
f.Get("/{test_id}", routes.TestGetView)
})
}