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