feat: Add RegisterAsync endpoint to AuthController (Refs #2)

This commit is contained in:
2026-04-01 13:15:22 -03:00
parent ab98056075
commit bf2cfbd9fc
3 changed files with 52 additions and 0 deletions

View File

@@ -10,4 +10,5 @@ public interface IUserRepository
Task<User?> UpdateAsync(User user);
Task<bool> DeleteAsync(int id);
Task<User?> GetByUsernameAsync(string username);
Task<User> RegisterAsync(User user);
}