feat: Add the email to user details message

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb 2024-11-17 08:41:03 +00:00
parent 642d8994de
commit b3397f6316
Signed by: awiteb
GPG key ID: 3F6B55640AA6682F
4 changed files with 7 additions and 0 deletions

View file

@ -3,6 +3,7 @@ help_start = "مرحبًا، أنا حارس فورجيو، سأرسل لك إش
sus_alert = """تم اكتشاف مستخدم مشبوه! 🚨 sus_alert = """تم اكتشاف مستخدم مشبوه! 🚨
معرف المستخدم: %{user_id} معرف المستخدم: %{user_id}
اسم المستخدم: %{username} اسم المستخدم: %{username}
الإيميل: %{email}
الاسم الكامل: %{full_name} الاسم الكامل: %{full_name}
النبذة: %{bio} النبذة: %{bio}
الموقع: %{website} الموقع: %{website}
@ -13,6 +14,7 @@ sus_alert = """تم اكتشاف مستخدم مشبوه! 🚨
ban_notify = """تم حظر مستخدم ban_notify = """تم حظر مستخدم
معرف المستخدم: %{user_id} معرف المستخدم: %{user_id}
اسم المستخدم: %{username} اسم المستخدم: %{username}
الإيميل: %{email}
الاسم الكامل: %{full_name} الاسم الكامل: %{full_name}
النبذة: %{bio} النبذة: %{bio}
الموقع: %{website} الموقع: %{website}

View file

@ -3,6 +3,7 @@ help_start = "Hi, I'm forgejo-guardian, I'll send you a notification about suspi
sus_alert = """Suspicious user detected! 🚨 sus_alert = """Suspicious user detected! 🚨
User ID: %{user_id} User ID: %{user_id}
Username: %{username} Username: %{username}
Email: %{email}
Full name: %{full_name} Full name: %{full_name}
Bio: %{bio} Bio: %{bio}
Website: %{website} Website: %{website}
@ -13,6 +14,7 @@ Do you want to ban this user?
ban_notify = """User has been banned ban_notify = """User has been banned
User ID: %{user_id} User ID: %{user_id}
Username: %{username} Username: %{username}
Email: %{email}
Full name: %{full_name} Full name: %{full_name}
Bio: %{bio} Bio: %{bio}
Website: %{website} Website: %{website}

View file

@ -3,6 +3,7 @@ help_start = "Привет! я forgejo-guardian. Я буду отправлят
sus_alert = """Обнаружен подозрительный пользователь! 🚨 sus_alert = """Обнаружен подозрительный пользователь! 🚨
ID пользователя: %{user_id} ID пользователя: %{user_id}
Юзернейм: %{username} Юзернейм: %{username}
Имейл: %{email}
Полное имя: %{full_name} Полное имя: %{full_name}
Био: %{bio} Био: %{bio}
Вебсайт: %{website} Вебсайт: %{website}
@ -13,6 +14,7 @@ sus_alert = """Обнаружен подозрительный пользова
ban_notify = """Пользователь заблокирован ban_notify = """Пользователь заблокирован
ID пользователя: %{user_id} ID пользователя: %{user_id}
Юзернейм: %{username} Юзернейм: %{username}
Имейл: %{email}
Полное имя: %{full_name} Полное имя: %{full_name}
Био: %{bio} Био: %{bio}
Вебсайт: %{website} Вебсайт: %{website}

View file

@ -54,6 +54,7 @@ fn user_details(msg: &str, user: &ForgejoUser) -> String {
msg, msg,
user_id = user.id, user_id = user.id,
username = user.username, username = user.username,
email = user.email,
full_name = not_found_if_empty(&user.full_name), full_name = not_found_if_empty(&user.full_name),
bio = not_found_if_empty(&user.biography), bio = not_found_if_empty(&user.biography),
website = not_found_if_empty(&user.website), website = not_found_if_empty(&user.website),