🔧 AuthService db 파라미터 추가
Some checks failed
SonarQube Analysis / SonarQube Scan (push) Has been cancelled
Some checks failed
SonarQube Analysis / SonarQube Scan (push) Has been cancelled
- AuthService() → AuthService(db) - 회원가입 기능 정상 작동
This commit is contained in:
@@ -66,7 +66,7 @@ async def signup_request(
|
|||||||
)
|
)
|
||||||
|
|
||||||
# 비밀번호 해싱
|
# 비밀번호 해싱
|
||||||
auth_service = AuthService()
|
auth_service = AuthService(db)
|
||||||
hashed_password = auth_service.hash_password(signup_data.password)
|
hashed_password = auth_service.hash_password(signup_data.password)
|
||||||
|
|
||||||
# 승인 대기 상태로 사용자 생성
|
# 승인 대기 상태로 사용자 생성
|
||||||
|
|||||||
Reference in New Issue
Block a user