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.
24 lines
515 B
24 lines
515 B
#!/usr/bin/env python
|
|
# ~*~ coding: utf-8 ~*~
|
|
#
|
|
from __future__ import absolute_import
|
|
|
|
from django.urls import path, include
|
|
from rest_framework_bulk.routes import BulkRouter
|
|
from ..api import v2 as api
|
|
|
|
app_name = 'users'
|
|
|
|
router = BulkRouter()
|
|
router.register(r'service-account-registrations',
|
|
api.ServiceAccountRegistrationViewSet,
|
|
'service-account-registration')
|
|
|
|
|
|
urlpatterns = [
|
|
# path('token/', api.UserToken.as_view(), name='user-token'),
|
|
]
|
|
urlpatterns += router.urls
|
|
|
|
|