mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-01 07:27:35 +00:00
* perf: 添加应用树api * perf: perms tree * perf: 统一应用树 * perf: 修改icon * perf: stash it * perf: 优化应用账号 * perf: 基本完成应用账号重构 * perf: 修改翻译 Co-authored-by: ibuler <ibuler@qq.com>
25 lines
810 B
Python
25 lines
810 B
Python
# coding:utf-8
|
|
#
|
|
from django.urls import path
|
|
from rest_framework_bulk.routes import BulkRouter
|
|
from .. import api
|
|
|
|
|
|
app_name = 'applications'
|
|
|
|
|
|
router = BulkRouter()
|
|
router.register(r'applications', api.ApplicationViewSet, 'application')
|
|
router.register(r'accounts', api.ApplicationAccountViewSet, 'application-account')
|
|
router.register(r'account-secrets', api.ApplicationAccountSecretViewSet, 'application-account-secret')
|
|
|
|
|
|
urlpatterns = [
|
|
path('remote-apps/<uuid:pk>/connection-info/', api.RemoteAppConnectionInfoApi.as_view(), name='remote-app-connection-info'),
|
|
# path('accounts/', api.ApplicationAccountViewSet.as_view(), name='application-account'),
|
|
# path('account-secrets/', api.ApplicationAccountSecretViewSet.as_view(), name='application-account-secret')
|
|
]
|
|
|
|
|
|
urlpatterns += router.urls
|