Browse Source

feature: Add ChannelFollowAdd MessageType (#1358)

Adds the new MessageType for system messages indicating that a webhook for a news channel has been added to a text channel.
tags/2.2.0
Chris Johnston Christopher F 5 years ago
parent
commit
794eba5d1a
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/Discord.Net.Core/Entities/Messages/MessageType.cs

+ 5
- 1
src/Discord.Net.Core/Entities/Messages/MessageType.cs View File

@@ -52,6 +52,10 @@ namespace Discord
/// <summary>
/// The message for when a guild reaches Tier 3 of Nitro boosts.
/// </summary>
UserPremiumGuildSubscriptionTier3 = 11
UserPremiumGuildSubscriptionTier3 = 11,
/// <summary>
/// The message for when a news channel subscription is added to a text channel.
/// </summary>
ChannelFollowAdd = 12,
}
}

Loading…
Cancel
Save