- hashed_password → password - User 모델의 실제 필드명에 맞춤 - 회원가입 기능 최종 수정
This commit is contained in:
@@ -75,7 +75,7 @@ async def signup_request(
|
||||
# 승인 대기 상태로 사용자 생성
|
||||
new_user = user_repo.create_user({
|
||||
'username': signup_data.username,
|
||||
'hashed_password': hashed_password,
|
||||
'password': hashed_password, # 필드명은 'password'
|
||||
'name': signup_data.name,
|
||||
'email': signup_data.email,
|
||||
'access_level': 'pending', # 승인 대기
|
||||
|
||||
Reference in New Issue
Block a user