Files
NexaPG/backend/app/models/__init__.py
nessi ea26ef4d33
All checks were successful
PostgreSQL Compatibility Matrix / PG14 smoke (push) Successful in 8s
PostgreSQL Compatibility Matrix / PG15 smoke (push) Successful in 7s
PostgreSQL Compatibility Matrix / PG16 smoke (push) Successful in 7s
PostgreSQL Compatibility Matrix / PG17 smoke (push) Successful in 6s
PostgreSQL Compatibility Matrix / PG18 smoke (push) Successful in 6s
Add target owners and alert notification management.
This commit implements the addition of `target_owners` and `alert_notification_events` tables, enabling management of responsible users for targets. Backend and frontend components are updated to allow viewing, assigning, and notifying target owners about critical alerts via email.
2026-02-12 15:22:32 +01:00

24 lines
387 B
Python

from app.models.models import (
AlertDefinition,
AlertNotificationEvent,
AuditLog,
EmailNotificationSettings,
Metric,
QueryStat,
Target,
TargetOwner,
User,
)
__all__ = [
"User",
"Target",
"Metric",
"QueryStat",
"AuditLog",
"AlertDefinition",
"EmailNotificationSettings",
"TargetOwner",
"AlertNotificationEvent",
]