2021-08-27 15:03:47 +00:00
|
|
|
using Myriad.Gateway;
|
2020-12-23 01:19:02 +00:00
|
|
|
using Myriad.Types;
|
|
|
|
|
|
|
|
namespace Myriad.Extensions
|
2020-12-22 12:15:26 +00:00
|
|
|
{
|
2020-12-22 15:55:13 +00:00
|
|
|
public static class MessageExtensions
|
2020-12-22 12:15:26 +00:00
|
|
|
{
|
2020-12-23 01:19:02 +00:00
|
|
|
public static string JumpLink(this Message msg) =>
|
|
|
|
$"https://discord.com/channels/{msg.GuildId}/{msg.ChannelId}/{msg.Id}";
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2020-12-23 01:19:02 +00:00
|
|
|
public static string JumpLink(this MessageReactionAddEvent msg) =>
|
|
|
|
$"https://discord.com/channels/{msg.GuildId}/{msg.ChannelId}/{msg.MessageId}";
|
2020-12-22 12:15:26 +00:00
|
|
|
}
|
|
|
|
}
|