fix: Email of Register

This commit is contained in:
Tao Chen
2024-11-03 05:07:17 +08:00
parent 91a33fe7f6
commit 14beef72fc
2 changed files with 3 additions and 3 deletions
+2 -2
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,
}