mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-12-16 00:52:41 +00:00
* perf: remove call client old- method via ?next=client * feat: add 2 decorators for login-get and login-callback-get to set next_page and get next_page from session * perf: code style * perf: handling the next parameter propagation issue in third-party authentication flows * perf: request.GET.dict() to copy() * perf: style import --------- Co-authored-by: Bai <baijiangjie@gmail.com>
13 lines
422 B
Python
13 lines
422 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('login/', views.Saml2AuthRequestView.as_view(), name='saml2-login'),
|
|
path('logout/', views.Saml2EndSessionView.as_view(), name='saml2-logout'),
|
|
path('callback/', views.Saml2AuthCallbackView.as_view(), name='saml2-callback'),
|
|
path('metadata/', views.Saml2AuthMetadataView.as_view(), name='saml2-metadata'),
|
|
]
|