authentik.stages.authenticator_sms.urls
API URLs
1"""API URLs""" 2 3from authentik.stages.authenticator_sms.api import ( 4 AuthenticatorSMSStageViewSet, 5 SMSAdminDeviceViewSet, 6 SMSDeviceViewSet, 7) 8 9api_urlpatterns = [ 10 ("authenticators/sms", SMSDeviceViewSet), 11 ( 12 "authenticators/admin/sms", 13 SMSAdminDeviceViewSet, 14 "admin-smsdevice", 15 ), 16 ("stages/authenticator/sms", AuthenticatorSMSStageViewSet), 17]
api_urlpatterns =
[('authenticators/sms', <class 'authentik.stages.authenticator_sms.api.SMSDeviceViewSet'>), ('authenticators/admin/sms', <class 'authentik.stages.authenticator_sms.api.SMSAdminDeviceViewSet'>, 'admin-smsdevice'), ('stages/authenticator/sms', <class 'authentik.stages.authenticator_sms.api.AuthenticatorSMSStageViewSet'>)]