feat(app): update LoginCommandHandler to persist hashed refresh token on login

This commit is contained in:
2026-04-14 13:28:16 -03:00
parent b79efc778a
commit 8bbd2b6f2a
3 changed files with 40 additions and 4 deletions

View File

@@ -5,4 +5,5 @@ namespace SIGCM2.Application.Abstractions.Persistence;
public interface IUsuarioRepository
{
Task<Usuario?> GetByUsernameAsync(string username);
Task<Usuario?> GetByIdAsync(int id, CancellationToken ct = default);
}