mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-04-08 13:23:17 +00:00
12 lines
278 B
Python
12 lines
278 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('login/', views.OpenIDLoginView.as_view(), name='openid-login'),
|
|
path('login/complete/', views.OpenIDLoginCompleteView.as_view(),
|
|
name='openid-login-complete'),
|
|
]
|