fix the incorrect email verify page, reset password page, and OAuth 2.0 callback page url when accessing ezBookkeeping through a subpath (#348)

This commit is contained in:
MaysWind
2025-11-17 00:37:26 +08:00
parent 8b34750426
commit 8a020b666c
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ import (
"github.com/mayswind/ezbookkeeping/pkg/templates"
)
const passwordResetUrlFormat = "%sdesktop/#/resetpassword?token=%s"
const passwordResetUrlFormat = "%sdesktop#/resetpassword?token=%s"
// ForgetPasswordService represents forget password service
type ForgetPasswordService struct {
+1 -1
View File
@@ -25,7 +25,7 @@ import (
"github.com/mayswind/ezbookkeeping/pkg/uuid"
)
const verifyEmailUrlFormat = "%sdesktop/#/verify_email?token=%s"
const verifyEmailUrlFormat = "%sdesktop#/verify_email?token=%s"
// UserService represents user service
type UserService struct {