Backend Draft
This commit is contained in:
7
backend/analytics/urls.py
Normal file
7
backend/analytics/urls.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from django.urls import path
|
||||
from .views import ActivityLogListView, ReportView
|
||||
|
||||
urlpatterns = [
|
||||
path('activity/', ActivityLogListView.as_view(), name='activity-list'),
|
||||
path('reports/', ReportView.as_view(), name='reports'),
|
||||
]
|
||||
Reference in New Issue
Block a user