authentik.events.urls

API URLs

 1"""API URLs"""
 2
 3from authentik.events.api.events import EventViewSet
 4from authentik.events.api.notification_mappings import NotificationWebhookMappingViewSet
 5from authentik.events.api.notification_rules import NotificationRuleViewSet
 6from authentik.events.api.notification_transports import NotificationTransportViewSet
 7from authentik.events.api.notifications import NotificationViewSet
 8
 9api_urlpatterns = [
10    ("events/events", EventViewSet),
11    ("events/notifications", NotificationViewSet),
12    ("events/transports", NotificationTransportViewSet),
13    ("events/rules", NotificationRuleViewSet),
14    ("propertymappings/notification", NotificationWebhookMappingViewSet),
15]