Skip to content

Commit

Permalink
feat: 리뷰 항목이 없어도 업로드할 수 있게 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
wonyangs committed Sep 12, 2024
1 parent 265c084 commit b4e842f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
async def upload_video(
file: UploadFile = File(...),
problemId: str = Form(...),
review: str = Form(...),
review: Optional[str] = Form(None),
token: str = Depends(validate_token)
):
# Step 2: Get S3 presigned URL from external API
Expand Down

0 comments on commit b4e842f

Please sign in to comment.