feat: add validation

This commit is contained in:
2026-05-19 22:29:02 +03:00
parent 666f2f67cb
commit caf7f003fa
6 changed files with 110 additions and 41 deletions

View File

@@ -93,6 +93,7 @@ def get_jwt_refresh_command(
uow: IUnitOfWork = Depends(get_unit_of_work),
hash_service: IHashService = Depends(get_hash_service),
jwt_service: IJwtService = Depends(get_jwt_service),
cache: ICache = Depends(get_cache),
logger: ILogger = Depends(get_logger),
) -> JwtRefreshCommand:
return JwtRefreshCommand(uow, hash_service, jwt_service, logger)
return JwtRefreshCommand(uow, hash_service, jwt_service, cache, logger)