fix: missing service tests #181

This commit is contained in:
2024-10-06 10:05:00 +02:00
parent 4dfd29eac1
commit 0fab1e1f2e
6 changed files with 95 additions and 23 deletions

View File

@@ -145,7 +145,7 @@ func (handler HandlerAuthImpl) handleSignUp() http.HandlerFunc {
return nil, err
}
go handler.service.SendVerificationMail(user)
go handler.service.SendVerificationMail(user.Id, user.Email)
return nil, nil
})