From 3529907eee78a6a2ed69bb1b3d43f59a91819d5a Mon Sep 17 00:00:00 2001 From: Andrei Date: Tue, 11 Jul 2017 11:21:24 -0700 Subject: [PATCH] [channels] add ability to modify properties on channel --- disco/types/channel.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/disco/types/channel.py b/disco/types/channel.py index bdc77a1..e44567c 100644 --- a/disco/types/channel.py +++ b/disco/types/channel.py @@ -381,6 +381,38 @@ class Channel(SlottedModel, Permissible): assert self.is_dm, 'Cannot close non-DM channel' self.delete() + def set_topic(self, topic, reason=None): + """ + Sets the channels topic. + """ + return self.client.api.channels_modify(self.id, topic=topic, reason=reason) + + def set_name(self, name, reason=None): + """ + Sets the channels name. + """ + return self.client.api.channels_modify(self.id, name=name, reason=reason) + + def set_position(self, position, reason=None): + """ + Sets the channels position. + """ + return self.client.api.channels_modify(self.id, position=position, reason=reason) + + def set_bitrate(self, bitrate, reason=None): + """ + Sets the channels bitrate. + """ + assert (self.is_voice) + return self.client.api.channels_modify(self.id, bitrate=bitrate, reason=reason) + + def set_user_limit(self, user_limit, reason=None): + """ + Sets the channels user limit. + """ + assert (self.is_voice) + return self.client.api.channels_modify(self.id, user_limit=user_limit, reason=reason) + class MessageIterator(object): """