API for Calendars

This commit is contained in:
2026-01-12 22:48:08 -05:00
parent f6672a880a
commit aacc0af901
9 changed files with 137 additions and 25 deletions

View File

@@ -20,6 +20,7 @@ from .views import *
urlpatterns = [
re_path(r'^events/', EventsAPIView.as_view(), name="get-events"),
re_path(r'^promo/', PromoAPIView.as_view(), name="get-promo"),
re_path(r'^cals/', CalAPIView.as_view(), name="get-cals"),
# re_path(r'^events-token/', EventsTokenAPIView.as_view(), name="get-token-events"),
]