This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/sources/saml/urls.py

13 lines
466 B
Python
Raw Normal View History

2019-11-07 16:02:56 +00:00
"""saml sp urls"""
from django.urls import path
from passbook.sources.saml.views import (ACSView, InitiateView, MetadataView,
SLOView)
urlpatterns = [
path('<slug:source>/', InitiateView.as_view(), name='login'),
path('<slug:source>/acs/', ACSView.as_view(), name='acs'),
path('<slug:source>/slo/', SLOView.as_view(), name='slo'),
path('<slug:source>/metadata/', MetadataView.as_view(), name='metadata'),
]