feat: implement user registration and update SASL authentication handling

This commit is contained in:
HueByte
2026-02-23 14:51:04 +01:00
parent 28c4b2993f
commit 27a25b1b43
8 changed files with 64 additions and 11 deletions
@@ -29,4 +29,5 @@ public interface IChatService
Task<UserProfileDto?> GetUserProfileAsync(string username);
Task<List<string>> GetChannelsForUserAsync(string username);
Task<(Guid UserId, string Username)?> AuthenticateUserAsync(string username, string password);
Task<(Guid UserId, string Username)?> RegisterUserAsync(string username, string password);
}