Update user

This commit is contained in:
2025-06-09 01:48:04 +07:00
parent 664e45f888
commit 64183fface

View File

@@ -39,6 +39,7 @@ public class UserRepository : IUserRepository
var dto = await _userRepository.FindOneAsync(u => u.Name == user.Name);
dto.AgentName = user.AgentName;
dto.AvatarUrl = user.AvatarUrl;
dto.TelegramChannel = user.TelegramChannel;
_userRepository.Update(dto);
}
catch (Exception e)