mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-07-02 23:23:21 +00:00
12 lines
358 B
Python
12 lines
358 B
Python
|
|
from django.urls import path
|
|
from . import api
|
|
|
|
app_name = 'ukey'
|
|
|
|
urlpatterns = [
|
|
path('ukey-sdk.js/', api.UKeySDKScriptFileAPIView.as_view(), name='ukey-sdk-script'),
|
|
path('ukey-sdk-config/', api.UKeySDKConfigFileAPIView.as_view(), name='ukey-sdk-config'),
|
|
path('enroll-cert/', api.UKeyCertEnrollAPIView.as_view(), name='ukey-enroll-cert'),
|
|
]
|