fix: Email of Register

This commit is contained in:
Tao Chen
2024-11-03 05:07:17 +08:00
parent 6fb1fbc5b1
commit 2ceaa0091b
2 changed files with 3 additions and 3 deletions

View File

@@ -391,7 +391,7 @@ func (ct *User) Register(c *gin.Context) {
response.Fail(c, 101, errList[0])
return
}
u := service.AllService.UserService.Register(f.Username, f.Password)
u := service.AllService.UserService.Register(f.Username, f.Email, f.Password)
if u == nil || u.Id == 0 {
response.Fail(c, 101, response.TranslateMsg(c, "OperationFailed"))
return

View File

@@ -11,7 +11,6 @@ import (
"strconv"
"time"
"strings"
"fmt"
)
type UserService struct {
@@ -378,9 +377,10 @@ func (us *UserService) IsPasswordEmptyByUser(u *model.User) bool {
}
// Register 注册
func (us *UserService) Register(username string, password string) *model.User {
func (us *UserService) Register(username string, email string, password string) *model.User {
u := &model.User{
Username: username,
Email: email,
Password: us.EncryptPassword(password),
GroupId: 1,
}