| 1 | # all_models.py |
| 2 | from app.auth.models.users import User |
| 3 | from app.connectors.models import Connectors |
| 4 | # from app.connectors.sublime.models.alerts import SublimeAlerts |
| 5 | # from app.connectors.wazuh_manager.models.rules import DisabledRule |
| 6 | from app.db.universal_models import Agents |
| 7 | from app.db.universal_models import Customers |
| 8 | from app.db.universal_models import CustomersMeta |
| 9 | from app.db.universal_models import LogEntry |
| 10 | from app.integrations.alert_creation_settings.models.alert_creation_settings import ( |
| 11 | AlertCreationSettings, |
| 12 | ) |
| 13 | from app.integrations.models.customer_integration_settings import CustomerIntegrations |
| 14 | from app.schedulers.models.scheduler import JobMetadata |
| 15 | from app.integrations.monitoring_alert.models.monitoring_alert import MonitoringAlerts |
| 16 | # from app.integrations.sap_siem.models.sap_siem import SapSiemMultipleLogins |
| 17 | from app.customer_provisioning.models.default_settings import ( |
| 18 | CustomerProvisioningDefaultSettings, |
| 19 | ) |