(email string)
| 36 | } |
| 37 | |
| 38 | func (mu mailerUser) GenerateEmailActivateCode(email string) string { |
| 39 | return userutil.GenerateActivateCode( |
| 40 | mu.user.ID, |
| 41 | email, |
| 42 | mu.user.Name, |
| 43 | mu.user.Password, |
| 44 | mu.user.Rands, |
| 45 | ) |
| 46 | } |
| 47 | |
| 48 | func (mu mailerUser) GenerateEmailResetPasswordCode(email string) string { |
| 49 | return userutil.GenerateResetPasswordCode( |
nothing calls this directly
no test coverage detected