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.
17 lines
346 B
17 lines
346 B
# coding:utf-8
|
|
#
|
|
|
|
from django.urls import path
|
|
from authentication.openid import views
|
|
|
|
app_name = 'authentication'
|
|
|
|
urlpatterns = [
|
|
# openid
|
|
path('openid/login/', views.LoginView.as_view(), name='openid-login'),
|
|
path('openid/login/complete/', views.LoginCompleteView.as_view(),
|
|
name='openid-login-complete'),
|
|
|
|
# other
|
|
]
|