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.
14 lines
423 B
14 lines
423 B
# -*- 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'),
|
|
]
|