You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
525 B

2 years ago
  1. from django.urls import path
  2. from .views import ProgressAPI, MemberProgressAPI, CategoryTypeDistribution, SpanTypeDistribution
  3. urlpatterns = [
  4. path(route="progress", view=ProgressAPI.as_view(), name="progress"),
  5. path(route="member-progress", view=MemberProgressAPI.as_view(), name="member_progress"),
  6. path(route="category-distribution", view=CategoryTypeDistribution.as_view(), name="category_distribution"),
  7. path(route="span-distribution", view=SpanTypeDistribution.as_view(), name="span_distribution"),
  8. ]