forked from rDrama/rDrama
1
0
Fork 0

notify users when their flair gets changed by jannies

master
Aevann 2023-02-22 19:00:38 +02:00
parent 5ea88d37b3
commit e5b9009dc2
1 changed files with 7 additions and 0 deletions

View File

@ -846,6 +846,13 @@ def admin_title_change(user_id, v):
)
g.db.add(ma)
if user.flairchanged:
message = f"@{v.username} (a site admin) has locked your flair to `{user.customtitleplain}`."
else:
message = f"@{v.username} (a site admin) has changed your flair to `{user.customtitleplain}`. You can change it back in the settings."
send_repeatable_notification(user.id, message)
return {"message": f"@{user.username}'s flair has been changed!"}
@app.post("/ban_user/<id>")