|
@ -441,6 +441,34 @@ class Channel(SlottedModel, Permissible): |
|
|
parent_id=to_snowflake(parent) if parent else parent, |
|
|
parent_id=to_snowflake(parent) if parent else parent, |
|
|
reason=reason) |
|
|
reason=reason) |
|
|
|
|
|
|
|
|
|
|
|
def create_text_channel(self, *args, **kwargs): |
|
|
|
|
|
""" |
|
|
|
|
|
Creates a sub-text-channel in this category. See `Guild.create_text_channel` |
|
|
|
|
|
for arguments and more information. |
|
|
|
|
|
""" |
|
|
|
|
|
if self.type != ChannelType.GUILD_CATEGORY: |
|
|
|
|
|
raise ValueError('Cannot create a sub-channel on a non-category channel') |
|
|
|
|
|
|
|
|
|
|
|
kwargs['parent_id'] = self.id |
|
|
|
|
|
return self.guild.create_text_channel( |
|
|
|
|
|
*args, |
|
|
|
|
|
**kwargs |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
def create_voice_channel(self, *args, **kwargs): |
|
|
|
|
|
""" |
|
|
|
|
|
Creates a sub-voice-channel in this category. See `Guild.create_voice_channel` |
|
|
|
|
|
for arguments and more information. |
|
|
|
|
|
""" |
|
|
|
|
|
if self.type != ChannelType.GUILD_CATEGORY: |
|
|
|
|
|
raise ValueError('Cannot create a sub-channel on a non-category channel') |
|
|
|
|
|
|
|
|
|
|
|
kwargs['parent_id'] = self.id |
|
|
|
|
|
return self.guild.create_voice_channel( |
|
|
|
|
|
*args, |
|
|
|
|
|
**kwargs |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MessageIterator(object): |
|
|
class MessageIterator(object): |
|
|
""" |
|
|
""" |
|
|