feat: add team process API endpoint.

This commit is contained in:
2026-02-02 10:51:27 +08:00
parent 71eec01739
commit c66109c829

View File

@@ -623,7 +623,7 @@ func processSingleTeam(idx int, req TeamProcessRequest) (result TeamProcessResul
} }
email := mail.GenerateEmail() email := mail.GenerateEmail()
password := register.GeneratePassword() password := register.GeneratePassword()
logger.Info(fmt.Sprintf("%s [成员 %d] 邮箱: %s", logPrefix, idx+1, email), email, "team") logger.Info(fmt.Sprintf("%s [成员 %d] 邮箱: %s | 密码: %s", logPrefix, idx+1, email, password), email, "team")
registerMember(idx, email, password) registerMember(idx, email, password)
}(i) }(i)
} }