mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-19 22:14:07 +01:00
7 lines
176 B
Python
7 lines
176 B
Python
from django.urls import path
|
|
from .views import DashboardStatsAPIView
|
|
|
|
urlpatterns = [
|
|
path('dashboard/stats/', DashboardStatsAPIView.as_view(), name='dashboard-stats'),
|
|
]
|