authentik.stages.authenticator_static.urls
API URLs
1"""API URLs""" 2 3from authentik.stages.authenticator_static.api import ( 4 AuthenticatorStaticStageViewSet, 5 StaticAdminDeviceViewSet, 6 StaticDeviceViewSet, 7) 8 9api_urlpatterns = [ 10 ("authenticators/static", StaticDeviceViewSet), 11 ( 12 "authenticators/admin/static", 13 StaticAdminDeviceViewSet, 14 "admin-staticdevice", 15 ), 16 ("stages/authenticator/static", AuthenticatorStaticStageViewSet), 17]
api_urlpatterns =
[('authenticators/static', <class 'authentik.stages.authenticator_static.api.StaticDeviceViewSet'>), ('authenticators/admin/static', <class 'authentik.stages.authenticator_static.api.StaticAdminDeviceViewSet'>, 'admin-staticdevice'), ('stages/authenticator/static', <class 'authentik.stages.authenticator_static.api.AuthenticatorStaticStageViewSet'>)]