This commit is contained in:
Aevann1 2022-02-26 15:31:49 +02:00
parent 807998a125
commit 8b4edcb682
9 changed files with 115 additions and 100 deletions

View file

@ -440,23 +440,4 @@ class Comment(Base):
@property
@lazy
def active_flags(self): return self.flags.count()
class Notification(Base):
__tablename__ = "notifications"
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
comment_id = Column(Integer, ForeignKey("comments.id"), primary_key=True)
read = Column(Boolean, default=False)
created_utc = Column(Integer)
comment = relationship("Comment", viewonly=True)
user = relationship("User", viewonly=True)
def __init__(self, *args, **kwargs):
if "created_utc" not in kwargs: kwargs["created_utc"] = int(time.time())
super().__init__(*args, **kwargs)
def __repr__(self):
return f"<Notification(id={self.id})>"
def active_flags(self): return self.flags.count()