authentik.stages.consent.urls

API URLs

1"""API URLs"""
2
3from authentik.stages.consent.api import ConsentStageViewSet, UserConsentViewSet
4
5api_urlpatterns = [
6    ("stages/consent", ConsentStageViewSet),
7    ("core/user_consent", UserConsentViewSet),
8]
api_urlpatterns = [('stages/consent', <class 'authentik.stages.consent.api.ConsentStageViewSet'>), ('core/user_consent', <class 'authentik.stages.consent.api.UserConsentViewSet'>)]