From fb46902b856fdca2a370465221c33e17b3c6ec0c Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Tue, 14 Oct 2025 07:33:20 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20AuthService=20db=20=ED=8C=8C?= =?UTF-8?q?=EB=9D=BC=EB=AF=B8=ED=84=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - AuthService() → AuthService(db) - 회원가입 기능 정상 작동 --- backend/app/auth/signup_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/auth/signup_routes.py b/backend/app/auth/signup_routes.py index 592d24b..fb8ef30 100644 --- a/backend/app/auth/signup_routes.py +++ b/backend/app/auth/signup_routes.py @@ -66,7 +66,7 @@ async def signup_request( ) # 비밀번호 해싱 - auth_service = AuthService() + auth_service = AuthService(db) hashed_password = auth_service.hash_password(signup_data.password) # 승인 대기 상태로 사용자 생성