Skip to content

Commit

Permalink
fix: include email in reset confirmation email (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoubfaouzi authored Dec 7, 2024
1 parent d0cf2b3 commit 374dd8c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions internal/auth/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ func (r resource) resendConfirmation(c echo.Context) error {
templateData := struct {
Username string
Token string
Email string
Guid string
LoginURL string
LiveChatURL string
Expand All @@ -314,6 +315,7 @@ func (r resource) resendConfirmation(c echo.Context) error {
Username: resp.username,
Token: resp.token,
Guid: resp.guid,
Email: req.Email,
LoginURL: "https://saferwall.com/auth/login",
LiveChatURL: "https://discord.gg/an37PYHeZP",
HelpURL: "https://about.saferwall.com/",
Expand Down

0 comments on commit 374dd8c

Please sign in to comment.