All checks were successful
PostgreSQL Compatibility Matrix / PG14 smoke (push) Successful in 8s
PostgreSQL Compatibility Matrix / PG15 smoke (push) Successful in 8s
PostgreSQL Compatibility Matrix / PG16 smoke (push) Successful in 8s
PostgreSQL Compatibility Matrix / PG17 smoke (push) Successful in 8s
PostgreSQL Compatibility Matrix / PG18 smoke (push) Successful in 8s
This commit introduces a new "Service Information" section displaying runtime details, installed version, and update status for the NexaPG application. It includes backend API endpoints, database schema changes, and a corresponding frontend page that allows users to check for updates against the official repository. The `.env` example now includes an `APP_VERSION` variable, and related documentation has been updated.
26 lines
439 B
Python
26 lines
439 B
Python
from app.models.models import (
|
|
AlertDefinition,
|
|
AlertNotificationEvent,
|
|
AuditLog,
|
|
EmailNotificationSettings,
|
|
Metric,
|
|
QueryStat,
|
|
ServiceInfoSettings,
|
|
Target,
|
|
TargetOwner,
|
|
User,
|
|
)
|
|
|
|
__all__ = [
|
|
"User",
|
|
"Target",
|
|
"Metric",
|
|
"QueryStat",
|
|
"ServiceInfoSettings",
|
|
"AuditLog",
|
|
"AlertDefinition",
|
|
"EmailNotificationSettings",
|
|
"TargetOwner",
|
|
"AlertNotificationEvent",
|
|
]
|