Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
fanglinfang committed Dec 15, 2023
1 parent 77933b1 commit b2ef3c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions myuw/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
re_path(r'^api/v1/affiliation/?$',
Affiliation.as_view(),
name="myuw_affiliation"),
re_path(r'^api/v1/book/current/?$',
re_path(r'^api/v1/book/current$',
TextbookCur.as_view(),
name="myuw_current_book"),
re_path(r'^api/v1/book/(?P<year>\d{4}),(?P<quarter>[a-z]+)'
Expand All @@ -150,7 +150,7 @@
re_path(r'^api/v1/iacourse/(?P<year>\d{4}),(?P<quarter>[a-z]+)',
IACDigitalItems.as_view(),
name="myuw_iacourse_digital_material_api"),
re_path(r'^api/v1/iacourse/current/?$',
re_path(r'^api/v1/iacourse/current$',
CurIACDigitalItems.as_view(),
name="myuw_iacourse_digital_material"),
re_path(r'^api/v1/categorylinks/(?P<category_id>.*?)$',
Expand Down

0 comments on commit b2ef3c7

Please sign in to comment.