Skip to content

Commit

Permalink
Remove sunsetted store channel type (#1806)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickelc authored and arqunis committed Apr 18, 2022
1 parent a9d1919 commit 1976428
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/model/channel/mod.rs
Expand Up @@ -311,10 +311,6 @@ pub enum ChannelType {
///
/// Note: `NewsChannel` is serialized into a [`GuildChannel`]
News = 5,
/// An indicator that the channel is a `StoreChannel`
///
/// Note: `StoreChannel` is serialized into a [`GuildChannel`]
Store = 6,
/// An indicator that the channel is a news thread [`GuildChannel`].
NewsThread = 10,
/// An indicator that the channel is a public thread [`GuildChannel`].
Expand All @@ -336,7 +332,6 @@ enum_number!(ChannelType {
Voice,
Category,
News,
Store,
NewsThread,
PublicThread,
PrivateThread,
Expand All @@ -354,7 +349,6 @@ impl ChannelType {
ChannelType::Voice => "voice",
ChannelType::Category => "category",
ChannelType::News => "news",
ChannelType::Store => "store",
ChannelType::NewsThread => "news_thread",
ChannelType::PublicThread => "public_thread",
ChannelType::PrivateThread => "private_thread",
Expand Down

0 comments on commit 1976428

Please sign in to comment.