mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
Add ChatManagement commands. Drop appsettings from version control.
This commit is contained in:
@@ -5,17 +5,20 @@ namespace Kruzya.TelegramBot.Core.Extensions
|
||||
{
|
||||
public static class UserExtension
|
||||
{
|
||||
public static string ToHtml(this User user)
|
||||
public static string ToHtml(this User user, bool byUsername = true)
|
||||
{
|
||||
var text = new StringBuilder();
|
||||
text.Append($"<a href=\"tg://user?id={user.Id}\">");
|
||||
if (!string.IsNullOrWhiteSpace(user.Username))
|
||||
|
||||
if (byUsername && !string.IsNullOrWhiteSpace(user.Username))
|
||||
{
|
||||
text.Append(user.Username);
|
||||
}
|
||||
else
|
||||
{
|
||||
text.Append($"{user.FirstName} {user.LastName}".Trim().HtmlEncode());
|
||||
text.Append("</a>");
|
||||
|
||||
return text.ToString();
|
||||
}
|
||||
return text.Append("</a>").ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user