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.
jumpserver/apps/authentication/urls/view_urls.py

15 lines
326 B

# coding:utf-8
#
from django.urls import path
6 years ago
from .. import views
app_name = 'authentication'
urlpatterns = [
# openid
6 years ago
path('openid/login/', views.OpenIDLoginView.as_view(), name='openid-login'),
path('openid/login/complete/', views.OpenIDLoginCompleteView.as_view(),
name='openid-login-complete'),
]