Browse Source

Add MessageReactionRemoveAll utils, Message.get_reactors

pull/21/head
Andrei 8 years ago
parent
commit
b00e82da63
  1. 8
      disco/gateway/events.py
  2. 15
      disco/types/message.py

8
disco/gateway/events.py

@ -658,3 +658,11 @@ class MessageReactionRemoveAll(GatewayEvent):
"""
channel_id = Field(snowflake)
message_id = Field(snowflake)
@property
def channel(self):
return self.client.state.channels.get(self.channel_id)
@property
def guild(self):
return self.channel.guild

15
disco/types/message.py

@ -299,6 +299,21 @@ class Message(SlottedModel):
"""
return self.client.api.channels_messages_delete(self.channel_id, self.id)
def get_reactors(self, emoji):
"""
Returns an list of users who reacted to this message with the given emoji.
Returns
-------
list(:class:`User`)
The users who reacted.
"""
return self.client.api.channels_messages_reactions_get(
self.channel_id,
self.id,
emoji
)
def create_reaction(self, emoji):
if isinstance(emoji, Emoji):
emoji = emoji.to_string()

Loading…
Cancel
Save