14 lines
311 B
Python
14 lines
311 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from apps.projects.api.views import ProjectViewSet
|
|
|
|
app_name = "projects"
|
|
|
|
router = DefaultRouter()
|
|
router.register(r"projects", ProjectViewSet, basename="project")
|
|
|
|
urlpatterns = [
|
|
path("", include(router.urls)),
|
|
]
|