mirror of https://github.com/jumpserver/jumpserver
20 lines
353 B
Python
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
|