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.
21 lines
465 B
21 lines
465 B
# coding:utf-8
|
|
#
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from django.urls import path
|
|
|
|
from .. import api
|
|
|
|
app_name = 'authentication'
|
|
|
|
|
|
urlpatterns = [
|
|
# path('token/', api.UserToken.as_view(), name='user-token'),
|
|
path('auth/', api.UserAuthApi.as_view(), name='user-auth'),
|
|
path('connection-token/',
|
|
api.UserConnectionTokenApi.as_view(), name='connection-token'),
|
|
path('otp/auth/', api.UserOtpAuthApi.as_view(), name='user-otp-auth'),
|
|
]
|
|
|