authentik/authentik/stages/consent/urls.py

9 lines
212 B
Python

"""API URLs"""
from authentik.stages.consent.api import ConsentStageViewSet, UserConsentViewSet
api_urlpatterns = [
("stages/consent", ConsentStageViewSet),
("core/user_consent", UserConsentViewSet),
]