authentik.stages.authenticator_webauthn.urls

API URLs

 1"""API URLs"""
 2
 3from authentik.stages.authenticator_webauthn.api.device_types import WebAuthnDeviceTypeViewSet
 4from authentik.stages.authenticator_webauthn.api.devices import (
 5    WebAuthnAdminDeviceViewSet,
 6    WebAuthnDeviceViewSet,
 7)
 8from authentik.stages.authenticator_webauthn.api.stages import AuthenticatorWebAuthnStageViewSet
 9
10api_urlpatterns = [
11    ("stages/authenticator/webauthn", AuthenticatorWebAuthnStageViewSet),
12    ("stages/authenticator/webauthn_device_types", WebAuthnDeviceTypeViewSet),
13    (
14        "authenticators/admin/webauthn",
15        WebAuthnAdminDeviceViewSet,
16        "admin-webauthndevice",
17    ),
18    ("authenticators/webauthn", WebAuthnDeviceViewSet),
19]
api_urlpatterns = [('stages/authenticator/webauthn', <class 'authentik.stages.authenticator_webauthn.api.stages.AuthenticatorWebAuthnStageViewSet'>), ('stages/authenticator/webauthn_device_types', <class 'authentik.stages.authenticator_webauthn.api.device_types.WebAuthnDeviceTypeViewSet'>), ('authenticators/admin/webauthn', <class 'authentik.stages.authenticator_webauthn.api.devices.WebAuthnAdminDeviceViewSet'>, 'admin-webauthndevice'), ('authenticators/webauthn', <class 'authentik.stages.authenticator_webauthn.api.devices.WebAuthnDeviceViewSet'>)]