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

@@ -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,
}