-
Notifications
You must be signed in to change notification settings - Fork 586
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing forum fields to guild channel #2298
Conversation
758dd41
to
cbdc9c2
Compare
Added `flags`, `total_messages_sent`, `available_tags`, `applied_tags`, `default_reaction_emoji`, `default_thread_rate_limit_per_user` and `default_sort_order` fields to `GuildChannel`. Added `ForumTag`, `ForumTagId`, `DefaultReaction` and `SortOrder` objects. Box the `Channel::Guild` variant to reduce enum size.
cbdc9c2
to
b94b0bf
Compare
This is a breaking change. You'll have to either remove this change, or rebase the PR to the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is fine otherwise.
Boxing has already been done in #2205 so it can be safely removed from this PR |
583b1db
to
61348ec
Compare
This seems to have broken
|
This should be fixed with fc9c420 |
Added
flags
,total_messages_sent
,available_tags
,applied_tags
,default_reaction_emoji
,default_thread_rate_limit_per_user
anddefault_sort_order
fields toGuildChannel
.Added
ForumTag
,ForumTagId
,DefaultReaction
, andSortOrder
objects.Boxed the
Channel::Guild
variant to reduce the enum size.