mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
353 B
19 lines
353 B
# -*- 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
|
|
|