make needs rename not show up in unmoderated names

This commit is contained in:
aronwk-aaron 2022-12-19 09:58:26 -06:00
parent e44872e523
commit b8bd7c6cba

View File

@ -260,7 +260,7 @@ def get(status):
if status == "approved":
query = db.session.query().select_from(CharacterInfo).join(Account).filter((CharacterInfo.pending_name == "") & (CharacterInfo.needs_rename == False))
elif status == "unapproved":
query = db.session.query().select_from(CharacterInfo).join(Account).filter((CharacterInfo.pending_name != "") | (CharacterInfo.needs_rename == True))
query = db.session.query().select_from(CharacterInfo).join(Account).filter((CharacterInfo.pending_name != "") & (CharacterInfo.needs_rename == False))
else:
query = db.session.query().select_from(CharacterInfo).join(Account)