Timebot implementation

This commit is contained in:
MarcWieland
2026-06-08 23:34:08 +02:00
parent b8b01871ed
commit 82626bc5b3
17 changed files with 802 additions and 209 deletions
+1 -1
View File
@@ -6,5 +6,5 @@ public interface IAuthService
Task<List<User>> GetAllUsersAsync();
Task DeleteUserAsync(int userId);
Task<string?> RenameUserAsync(int userId, string newUsername);
Task<(User? User, string? Error)> RegisterAsync(string username, string password);
Task<(User? User, string? Error)> RegisterAsync(string username, string password, string? honeypot = null);
}