Skip to content

Commit c0b245f

Browse files
authored
feat: add InvitableMixin to GuildForum (#1611)
You can invite people to a forum, after all.
1 parent 7fdcef2 commit c0b245f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interactions/models/discord/channel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2389,7 +2389,7 @@ async def close_stage(self, reason: Absent[Optional[str]] = MISSING) -> None:
23892389

23902390

23912391
@attrs.define(eq=False, order=False, hash=False, kw_only=True)
2392-
class GuildForum(GuildChannel):
2392+
class GuildForum(GuildChannel, InvitableMixin):
23932393
available_tags: List[ThreadTag] = attrs.field(repr=False, factory=list)
23942394
"""A list of tags available to assign to threads"""
23952395
default_reaction_emoji: Optional[DefaultReaction] = attrs.field(repr=False, default=None)

0 commit comments

Comments
 (0)