From 840ab2e68ea18f3584c40e37cfa91560eb88030c Mon Sep 17 00:00:00 2001 From: retr0-init <146389702+retr0-init@users.noreply.github.com> Date: Sat, 27 Jul 2024 20:44:15 +0100 Subject: [PATCH] feat: GuildForum supports webhook 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)