소스 검색

passsword mod3

main
Madiwka3 1 년 전
부모
커밋
6719031fef
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      app/apis/v1/route_user.py

+ 2
- 2
app/apis/v1/route_user.py 파일 보기

@@ -91,8 +91,8 @@ def update_user(
db: Session = Depends(get_db),
current_user: User = Depends(get_current_user),
):
if current_user.Role != "Admin" and current_user.id != user_id:
print(current_user.Role, current_user.id, user_id)
if current_user.Role != "Admin" and current_user.Id != user_id:
print(current_user.Role, current_user.Id, user_id)
raise HTTPException(
status_code=403, detail="You are not authorized to perform this action"
)


불러오는 중...
취소
저장