From e5d4f8b58f4f3ef81cac604a9f2d2a83e3766b30 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 8 Mar 2026 22:12:44 +0000 Subject: [PATCH] style: apply ruff auto-fix - Auto-formatted code with ruff format - Applied ruff linting fixes with --fix Co-authored-by: github-actions[bot] --- app/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models.py b/app/models.py index d5e15ab2..e782c494 100644 --- a/app/models.py +++ b/app/models.py @@ -684,6 +684,8 @@ class SharedLink(Base): created_at = Column(DateTime(timezone=True), server_default=func.now()) revoked_at = Column(DateTime(timezone=True), nullable=True) + + class UserNotificationTarget(Base): """Per-user notification target (email or webhook channel)."""