From 85cdf1f720f2e795305b72a316e2c5d7dfe9143f Mon Sep 17 00:00:00 2001 From: Noloquideus Date: Tue, 12 May 2026 00:28:34 +0300 Subject: [PATCH] fix: delete keydb --- src/presentation/routing/kyc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/presentation/routing/kyc.py b/src/presentation/routing/kyc.py index bba2d5e..948c8ca 100644 --- a/src/presentation/routing/kyc.py +++ b/src/presentation/routing/kyc.py @@ -11,17 +11,17 @@ kyc_router = APIRouter(prefix='/kyc', tags=['Kyc']) @kyc_router.post('/create') async def create_kyc( - auth: AuthContext = Depends(require_access_token), + #auth: AuthContext = Depends(require_access_token), command: PassKycCommand = Depends(get_pass_kyc_command), ) -> ORJSONResponse: - result = await command(user_id=auth.user_id) + result = await command(user_id='01KPKAFN6J1NJBY15DX8JE2QYB') return ORJSONResponse(result.model_dump()) @kyc_router.get('/session') async def get_kyc_session( - auth: AuthContext = Depends(require_access_token), + #auth: AuthContext = Depends(require_access_token), command: GetKycSessionCommand = Depends(get_kyc_session_command), ) -> ORJSONResponse: - result = await command(user_id=auth.user_id) + result = await command(user_id='01KPKAFN6J1NJBY15DX8JE2QYB') return ORJSONResponse(result.model_dump()) \ No newline at end of file