df
This commit is contained in:
parent
16f57c2fbd
commit
2a95ec0757
2 changed files with 0 additions and 6 deletions
|
@ -209,7 +209,6 @@ class Comment(Base, Age_times, Scores, Stndrd, Fuzzing):
|
|||
'is_banned': bool(self.is_banned),
|
||||
'deleted_utc': self.deleted_utc,
|
||||
'is_nsfw': self.over_18,
|
||||
'is_offensive': self.is_offensive,
|
||||
'permalink': self.permalink,
|
||||
'post_id': self.post.base36id,
|
||||
'score': self.score_fuzzed,
|
||||
|
@ -351,9 +350,6 @@ class Comment(Base, Age_times, Scores, Stndrd, Fuzzing):
|
|||
if not v:
|
||||
return False
|
||||
|
||||
if self.is_offensive and v.hide_offensive:
|
||||
return True
|
||||
|
||||
if self.is_bot and v.hide_bot:
|
||||
return True
|
||||
|
||||
|
|
|
@ -72,7 +72,6 @@ class Submission(Base, Stndrd, Age_times, Scores, Fuzzing):
|
|||
score_hot = Column(Float, default=0)
|
||||
score_top = Column(Float, default=1)
|
||||
score_activity = Column(Float, default=0)
|
||||
is_offensive = Column(Boolean, default=False)
|
||||
author = relationship(
|
||||
"User",
|
||||
lazy="joined",
|
||||
|
@ -288,7 +287,6 @@ class Submission(Base, Stndrd, Age_times, Scores, Fuzzing):
|
|||
'upvotes': self.upvotes_fuzzed,
|
||||
'downvotes': self.downvotes_fuzzed,
|
||||
#'award_count': self.award_count,
|
||||
'is_offensive': self.is_offensive,
|
||||
'meta_title': self.meta_title,
|
||||
'meta_description': self.meta_description,
|
||||
'voted': self.voted
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue