From f22df30161c14d490db07722e357648f8dd8f0f3 Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 30 Jun 2023 19:21:18 +0300 Subject: [PATCH] add forgotten clarification in notification --- files/routes/admin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/routes/admin.py b/files/routes/admin.py index 49d67e5ea..7e3a7e547 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -115,7 +115,7 @@ def make_admin(v:User, username): ) g.db.add(ma) - send_repeatable_notification(user.id, f"@{v.username} added you as an admin!") + send_repeatable_notification(user.id, f"@{v.username} (a site admin) added you as an admin!") return {"message": f"@{user.username} has been made admin!"} @@ -146,7 +146,7 @@ def remove_admin(v:User, username): ) g.db.add(ma) - send_repeatable_notification(user.id, f"@{v.username} removed you as an admin!") + send_repeatable_notification(user.id, f"@{v.username} (a site admin) removed you as an admin!") return {"message": f"@{user.username} has been removed as admin!"}