From 34c2d0d5e7fc83229cf1a9f15a9c9f6eb1b22665 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Fri, 21 Mar 2025 00:06:03 +0800 Subject: [PATCH] :truck: Remap get account page path --- pkg/internal/web/api/index.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/internal/web/api/index.go b/pkg/internal/web/api/index.go index cda08e5..30ae399 100644 --- a/pkg/internal/web/api/index.go +++ b/pkg/internal/web/api/index.go @@ -127,7 +127,7 @@ func MapControllers(app *fiber.App, baseURL string) { { directory.Get("/", getOtherUserinfo) directory.Get("/status", getStatus) - directory.Get("/pages", getAccountPage) + directory.Get("/page", getAccountPage) directory.Get("/check-in", listOtherUserCheckInRecord) }