sprint6+7: permission notifications + audit trail + notification entity filter + mail account permissions + migration 0053
Check Cross-Plugin Imports / check (push) Has been cancelled

This commit is contained in:
Agent Zero
2026-07-29 02:18:17 +02:00
parent 71ed592aa2
commit 88c04286af
7 changed files with 240 additions and 64 deletions
+2 -1
View File
@@ -20,11 +20,12 @@ from sqlalchemy.dialects.postgresql import UUID as PGUUID
from sqlalchemy.orm import Mapped, mapped_column
from app.core.db import Base, TenantMixin
from app.models.owned_mixin import OwnedMixin
# --- Mail Accounts (F-MAIL-14, F-MAIL-18) ---
class MailAccount(Base, TenantMixin):
class MailAccount(Base, TenantMixin, OwnedMixin):
"""Mail account configuration with encrypted IMAP/SMTP credentials."""
__tablename__ = "mail_accounts"