new option to ignore links on feeds

This commit is contained in:
2013-04-09 12:23:05 +02:00
parent 9cca4d292a
commit ec565eda7d
2 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,7 @@ class Feed(Base):
fullpage = Column(Boolean)
contentcolumn = Column(Enum('summary', 'content', 'fullpage', 'readability'))
html2textcontent = Column(Boolean)
html2textignorelinks = Column(Boolean)
html2textignoreimages = Column(Boolean)
enabled = Column(Boolean)
entries = relationship("Entry", backref=backref('feed'), cascade='all, delete, delete-orphan')