diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-04-02 01:29:46 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-04-02 01:29:46 +0900 |
| commit | ac38af84490b1bd5546ff7ff8135ab4126bee090 (patch) | |
| tree | 88080f95cfeb499716a80872fe998955c4644bef /backend/admin/handler.go | |
| parent | 9f8a609ece9093d3aaa62937c8035903bbd8a045 (diff) | |
| download | iosdc-japan-2025-albatross-ac38af84490b1bd5546ff7ff8135ab4126bee090.tar.gz iosdc-japan-2025-albatross-ac38af84490b1bd5546ff7ff8135ab4126bee090.tar.zst iosdc-japan-2025-albatross-ac38af84490b1bd5546ff7ff8135ab4126bee090.zip | |
fix(backend): fix paths
Diffstat (limited to 'backend/admin/handler.go')
| -rw-r--r-- | backend/admin/handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/admin/handler.go b/backend/admin/handler.go index eaea208..81ea2b7 100644 --- a/backend/admin/handler.go +++ b/backend/admin/handler.go @@ -464,5 +464,5 @@ func (h *Handler) postFix(c echo.Context) error { return echo.NewHTTPError(http.StatusInternalServerError, err.Error()) } } - return c.Redirect(http.StatusSeeOther, basePath+"/admin") + return c.Redirect(http.StatusSeeOther, basePath+"/admin/dashboard") } |
