fix: password change bugs

This commit is contained in:
2026-06-10 20:09:40 +03:00
parent de870b78d2
commit 99714ac476
4 changed files with 24 additions and 14 deletions

View File

@@ -34,10 +34,6 @@ class IUserRepository(ABC):
@abstractmethod
async def count_individuals(self, *, query: str) -> int:
raise NotImplementedError
@abstractmethod
async def get_password_hash(self, user_id: str) -> str:
raise NotImplementedError
@abstractmethod
async def set_password(self, user_id: str, password_hash: str) -> UserEntity: