fd
This commit is contained in:
parent
801ca98ee9
commit
b9ff421fac
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue