* providers/ldap: fix Outpost provider listing excluding backchannel providers Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
8 lines
242 B
Python
8 lines
242 B
Python
"""API URLs"""
|
|
from authentik.providers.ldap.api import LDAPOutpostConfigViewSet, LDAPProviderViewSet
|
|
|
|
api_urlpatterns = [
|
|
("outposts/ldap", LDAPOutpostConfigViewSet, "ldapprovideroutpost"),
|
|
("providers/ldap", LDAPProviderViewSet),
|
|
]
|