authentik.enterprise.endpoints.connectors.google_chrome.urls

API URLs

 1"""API URLs"""
 2
 3from django.urls import path
 4
 5from authentik.enterprise.endpoints.connectors.google_chrome.api import GoogleChromeConnectorViewSet
 6from authentik.enterprise.endpoints.connectors.google_chrome.views.dtc import (
 7    GoogleChromeDeviceTrustConnector,
 8)
 9
10urlpatterns = [
11    path("chrome/", GoogleChromeDeviceTrustConnector.as_view(), name="chrome"),
12]
13
14api_urlpatterns = [
15    ("endpoints/google_chrome/connectors", GoogleChromeConnectorViewSet),
16]
urlpatterns = [<URLPattern 'chrome/' [name='chrome']>]
api_urlpatterns = [('endpoints/google_chrome/connectors', <class 'authentik.enterprise.endpoints.connectors.google_chrome.api.GoogleChromeConnectorViewSet'>)]