mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-19 05:54:07 +01:00
10 lines
373 B
Python
10 lines
373 B
Python
from django.urls import path
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from .views import DashboardStatsViewSet, DashboardWeeklyViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'dashboard/stats', DashboardStatsViewSet, basename='dashboard-stats')
|
|
router.register(r'dashboard/weekly', DashboardWeeklyViewSet, basename='dashboard-weekly')
|
|
urlpatterns = router.urls
|