Browse Source

passsword mod3

main
Madiwka3 1 year ago
parent
commit
6719031fef
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/apis/v1/route_user.py

+ 2
- 2
app/apis/v1/route_user.py View File

@@ -91,8 +91,8 @@ def update_user(
db: Session = Depends(get_db), db: Session = Depends(get_db),
current_user: User = Depends(get_current_user), 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( raise HTTPException(
status_code=403, detail="You are not authorized to perform this action" status_code=403, detail="You are not authorized to perform this action"
) )


Loading…
Cancel
Save