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.
2019-11-07 16:02:56 +00:00
|
|
|
"""saml sp urls"""
|
|
|
|
from django.urls import path
|
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
from passbook.sources.saml.views import ACSView, InitiateView, MetadataView, SLOView
|
2019-11-07 16:02:56 +00:00
|
|
|
|
|
|
|
urlpatterns = [
|
2020-02-18 21:12:51 +00:00
|
|
|
path("<slug:source_slug>/", InitiateView.as_view(), name="login"),
|
|
|
|
path("<slug:source_slug>/acs/", ACSView.as_view(), name="acs"),
|
|
|
|
path("<slug:source_slug>/slo/", SLOView.as_view(), name="slo"),
|
|
|
|
path("<slug:source_slug>/metadata/", MetadataView.as_view(), name="metadata"),
|
2019-11-07 16:02:56 +00:00
|
|
|
]
|