Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Fix join subject route
Browse files Browse the repository at this point in the history
  • Loading branch information
msathieu committed Mar 12, 2024
1 parent 44a2e3f commit fddfbdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/routes/student.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def projects_of_student_get(
return get_projects_of_student(session, student.id)


@student_router.post("/student/subjects{subject_id}/join")
@student_router.post("/student/subjects/{subject_id}/join")
def student_subject_join(
subject_id: int,
session: Session = Depends(get_session),
Expand Down

0 comments on commit fddfbdd

Please sign in to comment.