소스 검색

maintenanceperms

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

+ 1
- 1
app/apis/v1/route_vehicle.py 파일 보기

@@ -132,7 +132,7 @@ def update_vehicle(
db: Session = Depends(get_db),
current_user: User = Depends(get_current_user),
):
if current_user.Role != "Admin":
if current_user.Role != "Admin" and current_user.Role != "Maintenance":
raise HTTPException(
status_code=403, detail="You are not authorized to perform this action"
)


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