remotes/1693045480750635534/spooky-22
Aevann1 2021-08-06 14:57:37 +02:00
parent baa7ac770d
commit e925b918f4
2 changed files with 5 additions and 5 deletions

View File

@ -51,10 +51,10 @@ class Comment(Base, Age_times, Scores, Stndrd, Fuzzing):
oauth_app=relationship("OauthApp")
post = relationship("Submission")
flags = relationship("CommentFlag", lazy="joined")
flags = relationship("CommentFlag", lazy="dynamic")
votes = relationship(
"CommentVote",
lazy="joined",
lazy="dynamic",
primaryjoin="CommentVote.comment_id==Comment.id")
author = relationship(
@ -293,7 +293,7 @@ class Comment(Base, Age_times, Scores, Stndrd, Fuzzing):
@property
@lazy
def active_flags(self): return len(self.flags)
def active_flags(self): return self.flags.count()
@property
@lazy

View File

@ -54,7 +54,7 @@ class Submission(Base, Stndrd, Age_times, Scores, Fuzzing):
lazy="joined",
primaryjoin="Comment.parent_submission==Submission.id",
)
flags = relationship("Flag", lazy="joined")
flags = relationship("Flag", lazy="dynamic")
is_approved = Column(Integer, ForeignKey("users.id"), default=0)
over_18 = Column(Boolean, default=False)
author = relationship(
@ -415,7 +415,7 @@ class Submission(Base, Stndrd, Age_times, Scores, Fuzzing):
@property
@lazy
def active_flags(self): return len(self.flags)
def active_flags(self): return self.flags.count()
@property
@lazy