From 6265723a352ee77f418ef3004012cc5693ba390f Mon Sep 17 00:00:00 2001 From: "I. Ahmad" <54180221+nerdguyahmad@users.noreply.github.com> Date: Tue, 12 Apr 2022 02:21:08 +0500 Subject: [PATCH] Add support for archive duration in Guild.create_text_channel --- discord/guild.py | 8 ++++++++ discord/http.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/discord/guild.py b/discord/guild.py index 26353d973..21cbf32c4 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -1180,6 +1180,7 @@ class Guild(Hashable): slowmode_delay: int = MISSING, nsfw: bool = MISSING, overwrites: Mapping[Union[Role, Member], PermissionOverwrite] = MISSING, + default_auto_archive_duration: int = MISSING, ) -> TextChannel: """|coro| @@ -1245,6 +1246,10 @@ class Guild(Hashable): The maximum value possible is `21600`. nsfw: :class:`bool` To mark the channel as NSFW or not. + default_auto_archive_duration: :class:`int` + The default auto archive duration for threads created in the text channel (in minutes). + + .. versionadded:: 2.0 reason: Optional[:class:`str`] The reason for creating this channel. Shows up on the audit log. @@ -1276,6 +1281,9 @@ class Guild(Hashable): if nsfw is not MISSING: options['nsfw'] = nsfw + if default_auto_archive_duration is not MISSING: + options["default_auto_archive_duration"] = default_auto_archive_duration + data = await self._create_channel( name, overwrites=overwrites, channel_type=ChannelType.text, category=category, reason=reason, **options ) diff --git a/discord/http.py b/discord/http.py index 455f872a6..2cd6bd1b7 100644 --- a/discord/http.py +++ b/discord/http.py @@ -922,7 +922,7 @@ class HTTPClient: 'rate_limit_per_user', 'rtc_region', 'video_quality_mode', - 'auto_archive_duration', + 'default_auto_archive_duration', ) payload.update({k: v for k, v in options.items() if k in valid_keys and v is not None})