authentik/authentik/stages/authenticator_static/urls.py

18 lines
427 B
Python

"""API URLs"""
from authentik.stages.authenticator_static.api import (
AuthenticatorStaticStageViewSet,
StaticAdminDeviceViewSet,
StaticDeviceViewSet,
)
api_urlpatterns = [
("authenticators/static", StaticDeviceViewSet),
(
"authenticators/admin/static",
StaticAdminDeviceViewSet,
"admin-staticdevice",
),
("stages/authenticator/static", AuthenticatorStaticStageViewSet),
]