remove unnecessary logic now

pull/78/head
Aevann1 2022-12-16 16:48:17 +02:00
parent f9e0720283
commit 78e2fe9d5a
1 changed files with 0 additions and 3 deletions

View File

@ -555,9 +555,6 @@ def submit_post(v:User, sub=None):
if len(title_html) > POST_TITLE_HTML_LENGTH_LIMIT:
return error("Rendered title is too big!")
if sub != "chudrama" and v.id == 253 and SITE == 'rdrama.net': # 2022-12-15: special logic by request
sub = "chudrama"
if sub == 'changelog' and not v.admin_level >= PERMS['POST_TO_CHANGELOG']:
# we also allow 'code contributor' badgeholders to post to the changelog hole
allowed = g.db.query(Badge.user_id).filter_by(badge_id=3).all()