Add forgot password feature

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-06-20 10:32:33 -07:00
parent 3b7d246e3f
commit de0ea0cc9f
7 changed files with 296 additions and 3 deletions

View File

@@ -196,7 +196,7 @@ func (s Service) ForgetPassword(
resetPasswordUrl := url.URL{
Scheme: "https",
Host: s.hostname,
Path: "/reset-password",
Path: "/auth/reset-password",
RawQuery: url.Values{
"token": []string{passwordResetToken},
}.Encode(),