authentik.providers.ldap.urls

API URLs

1"""API URLs"""
2
3from authentik.providers.ldap.api import LDAPOutpostConfigViewSet, LDAPProviderViewSet
4
5api_urlpatterns = [
6    ("outposts/ldap", LDAPOutpostConfigViewSet, "ldapprovideroutpost"),
7    ("providers/ldap", LDAPProviderViewSet),
8]
api_urlpatterns = [('outposts/ldap', <class 'authentik.providers.ldap.api.LDAPOutpostConfigViewSet'>, 'ldapprovideroutpost'), ('providers/ldap', <class 'authentik.providers.ldap.api.LDAPProviderViewSet'>)]