feat: text content extraction

This commit is contained in:
Leon
2025-07-16 21:21:06 +02:00
parent 265e818780
commit 65902ed161
11 changed files with 568 additions and 446 deletions

View File

@@ -12,6 +12,7 @@ class Newsletter(Base):
id = Column(Integer, primary_key=True, index=True)
name = Column(String)
is_active = Column(Boolean, default=True)
extract_content = Column(Boolean, default=False)
senders = relationship(
"Sender", back_populates="newsletter", cascade="all, delete-orphan"