kwork-poizonstore/core/urls.py

12 lines
214 B
Python

from django.urls import path
from poizonstore.utils import get_drf_router
from . import views
router = get_drf_router()
urlpatterns = [
path("settings/", views.GlobalSettingsAPI.as_view()),
] + router.urls