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.
27 lines
748 B
27 lines
748 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')
|
|
router.register(r'org-member-relation', api.OrgMemberRelationBulkViewSet, 'org-member-relation')
|
|
|
|
router.register(r'orgs/(?P<org_id>[0-9a-zA-Z\-]{36})/membership/admins',
|
|
api.OrgMemberAdminRelationBulkViewSet, 'membership-admins')
|
|
router.register(r'orgs/(?P<org_id>[0-9a-zA-Z\-]{36})/membership/users',
|
|
api.OrgMemberUserRelationBulkViewSet, 'membership-users'),
|
|
|
|
|
|
urlpatterns = [
|
|
path('orgs/current/', api.CurrentOrgDetailApi.as_view(), name='current-org-detail'),
|
|
]
|
|
|
|
urlpatterns += router.urls
|