This gets almost everything done, including Paging, but not search.

This commit is contained in:
Zed A. Shaw 2025-07-28 02:16:59 -04:00
parent da183c453c
commit 51b18823ae
7 changed files with 64 additions and 65 deletions

View file

@ -112,6 +112,7 @@ func DeleteApi(c *fiber.Ctx) error {
}
func Setup(app *fiber.App) {
app.Get("/admin/table/", Page("admin/table/index"))
app.Get("/api/admin/table/", GetApiTableIndex)
app.Get("/api/admin/table/:table/", GetApiSelectAll)