chore(auth): #331 implement and fix sign up tests
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 47s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 52s

This commit was merged in pull request #349.
This commit is contained in:
2024-12-23 22:51:46 +01:00
parent 9462f8b245
commit 397442767a
2 changed files with 85 additions and 1 deletions

View File

@@ -210,7 +210,7 @@ func (handler AuthImpl) handleSignUp() http.HandlerFunc {
// If err is "service.ErrAccountExists", then just continue
}
utils.TriggerToast(w, r, "success", "A link to activate your account has been emailed to the address provided.", http.StatusOK)
utils.TriggerToast(w, r, "success", "An activation link has been send to your email", http.StatusOK)
}
}