修改用户类型展示
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-01-02 11:26:18 +08:00
parent 52efdc28e4
commit 1fa94b95f0
2 changed files with 4 additions and 3 deletions
@@ -383,7 +383,8 @@ namespace IRaCIS.Core.Application.Service
await _trialIdentityUserRepository.SaveChangesAsync();
var usertyps = string.Join(',', userTypeList.Where(t => userTypeIdList.Contains(t.UserTypeId)).Select(t => $"{t.UserTypeShortName} ({t.UserTypeName})"));
var usertyps = string.Join(',', userTypeList.Where(t => userTypeIdList.Contains(t.UserTypeId)).Select(t => t.UserTypeName));
await _mailVerificationService.ExternalUserJoinEmail(trialId, identityUserId, usertyps, sendEmail.BaseUrl, sendEmail.RouteUrl);