--wip-- [skip ci]
This commit is contained in:
@@ -23,33 +23,8 @@ urlpatterns = [
|
||||
path("oauth2/", include("oauth2_provider.urls", namespace="oauth2_provider")),
|
||||
path("", include("home.urls")),
|
||||
path("", include("purchase.urls")),
|
||||
path("calendar/", views.calendar, name="calendar"),
|
||||
path("calendar/", include("course_calendar.urls"), name="calendar"),
|
||||
# TODO: move occurrence related urls to home app
|
||||
path(
|
||||
"occurrence/<int:occurrence_id>/",
|
||||
views.occurrence_detail,
|
||||
name="occurrence_detail",
|
||||
),
|
||||
path(
|
||||
"api/calendar/occurrences/",
|
||||
views.get_calendar_occurrences,
|
||||
name="get_calendar_occurrences",
|
||||
),
|
||||
path(
|
||||
"api/calendar/occurrences/<int:occurrence_id>/",
|
||||
views.get_calendar_occurrence,
|
||||
name="get_calendar_occurrence",
|
||||
),
|
||||
path(
|
||||
"occurrence/<int:occurrence_id>/signup/",
|
||||
views.occurrence_signup,
|
||||
name="occurrence_signup",
|
||||
),
|
||||
path(
|
||||
"occurrence/<int:occurrence_id>/signout/",
|
||||
views.occurrence_signout,
|
||||
name="occurrence_signout",
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user