authentik.stages.authenticator_duo.urls
API URLs
1"""API URLs""" 2 3from authentik.stages.authenticator_duo.api import ( 4 AuthenticatorDuoStageViewSet, 5 DuoAdminDeviceViewSet, 6 DuoDeviceViewSet, 7) 8 9api_urlpatterns = [ 10 ("authenticators/duo", DuoDeviceViewSet), 11 ( 12 "authenticators/admin/duo", 13 DuoAdminDeviceViewSet, 14 "admin-duodevice", 15 ), 16 ("stages/authenticator/duo", AuthenticatorDuoStageViewSet), 17]
api_urlpatterns =
[('authenticators/duo', <class 'authentik.stages.authenticator_duo.api.DuoDeviceViewSet'>), ('authenticators/admin/duo', <class 'authentik.stages.authenticator_duo.api.DuoAdminDeviceViewSet'>, 'admin-duodevice'), ('stages/authenticator/duo', <class 'authentik.stages.authenticator_duo.api.AuthenticatorDuoStageViewSet'>)]