From de71f4c0dc63cc70ab5b7946e98dfad2e277bbc8 Mon Sep 17 00:00:00 2001 From: retr0-init <146389702+retr0-init@users.noreply.github.com> Date: Fri, 6 Sep 2024 03:40:00 +0000 Subject: [PATCH] feat: GuildForum supports webhook (#1720) Signed-off-by: retr0-init <146389702+retr0-init@users.noreply.github.com> --- interactions/models/discord/channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interactions/models/discord/channel.py b/interactions/models/discord/channel.py index 539393ff8..ff2792ef2 100644 --- a/interactions/models/discord/channel.py +++ b/interactions/models/discord/channel.py @@ -2399,7 +2399,7 @@ async def close_stage(self, reason: Absent[Optional[str]] = MISSING) -> None: @attrs.define(eq=False, order=False, hash=False, kw_only=True) -class GuildForum(GuildChannel, InvitableMixin): +class GuildForum(GuildChannel, InvitableMixin, WebhookMixin): available_tags: List[ThreadTag] = attrs.field(repr=False, factory=list) """A list of tags available to assign to threads""" default_reaction_emoji: Optional[DefaultReaction] = attrs.field(repr=False, default=None)