- Backup/restore: per-stack tar.gz incl. named-volume snapshots (helper container), upload restore with rename/overwrite/conflict detection. - Notifications: ntfy/Discord/Slack/Gotify/generic webhooks, per-event subscriptions; wired into the update checker and stack lifecycle. - Settings page: update-check interval, webhook CRUD + test, user management (with last-admin safeguards). - Audit log page (searchable, paginated). - Mobile-responsive sidebar/layout. Multi-host agents and remote backup destinations (SFTP/S3) deferred. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
9 lines
324 B
Python
9 lines
324 B
Python
"""SQLModel table models. Importing this package registers all tables."""
|
|
from models.audit import AuditLog
|
|
from models.setting import Setting, Webhook
|
|
from models.stack import Stack
|
|
from models.template import Template
|
|
from models.user import User
|
|
|
|
__all__ = ["User", "Stack", "AuditLog", "Template", "Setting", "Webhook"]
|