• 老广's avatar
    Password message (#2702) · 3855fecc
    老广 authored
    * [Update] 密码信封
    
    * [Update]  查看密码
    
    * [Update] 支持查看密码
    
    * [Update] 修改语言翻译
    
    * [Update] 迁移ansible到2.8版本
    
    * [Update] 修改auth book的可连接性
    
    * [Update] 删除不使用的方法
    Unverified
    3855fecc
api_urls.py 546 Bytes
# 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'),
    path('otp/verify/', api.UserOtpVerifyApi.as_view(), name='user-otp-verify'),
]