same as last commit but for @jimjones

pull/83/head
Aevann1 2022-12-22 00:23:24 +02:00
parent 49cae21709
commit 697e7d60b0
3 changed files with 6 additions and 3 deletions

View File

@ -495,6 +495,7 @@ BADGE_BLACKLIST = { # only grantable by AEVANN_ID and SNAKES_ID
}
NOTIFIED_USERS = {}
DONT_LINK_ALTS = {}
if SITE == 'rdrama.net':
FEATURES['PRONOUNS'] = True
@ -571,6 +572,8 @@ if SITE == 'rdrama.net':
ANTISPAM_BYPASS_IDS = {1703, 13427}
DONT_LINK_ALTS = {253,3161,11163}
BOOSTED_HOLES = {
'furry',
'femboy',

View File

@ -34,7 +34,7 @@ def check_for_alts(current:User, include_current_session=True):
past_accs = set(session.get("history", [])) if include_current_session else set()
def add_alt(user1:int, user2:int):
if SITE == 'rdrama.net' and (user1 in (253,3161) or user2 in (253,3161)): return
if SITE == 'rdrama.net' and (user1 in DONT_LINK_ALTS or user2 in DONT_LINK_ALTS): return
li = [user1, user2]
existing = g.db.query(Alt).filter(Alt.user1.in_(li), Alt.user2.in_(li)).one_or_none()
if not existing:

View File

@ -1156,7 +1156,7 @@ def subscribed_posts(v:User, username):
@app.post("/fp/<fp>")
@auth_required
def fp(v:User, fp):
if SITE == 'rdrama.net' and v.id in (253,3161):
if SITE == 'rdrama.net' and v.id in DONT_LINK_ALTS:
return '', 204
v.fp = fp
@ -1168,7 +1168,7 @@ def fp(v:User, fp):
print(f'{v.username}: email', flush=True)
users += alts
for u in users:
if SITE == 'rdrama.net' and u.id in (253,3161): continue
if SITE == 'rdrama.net' and u.id in DONT_LINK_ALTS: continue
li = [v.id, u.id]
existing = g.db.query(Alt).filter(Alt.user1.in_(li), Alt.user2.in_(li)).one_or_none()
if existing: continue