jumpserver/apps/orgs/urls/api_urls.py

20 lines
353 B
Python

# -*- coding: utf-8 -*-
#
from django.urls import path
from rest_framework_bulk.routes import BulkRouter
from .. import api
app_name = 'orgs'
router = BulkRouter()
router.register(r'orgs', api.OrgViewSet, 'org')
urlpatterns = [
path('orgs/current/', api.CurrentOrgDetailApi.as_view(), name='current-org-detail'),
]
urlpatterns += router.urls