Browse Source

[guild] add support for system_channel_id & GUILD_MEMBER_JOIN

pull/54/head
andrei 8 years ago
parent
commit
c11ed6da13
  1. 7
      disco/types/guild.py
  2. 3
      disco/types/message.py

7
disco/types/guild.py

@ -268,6 +268,8 @@ class Guild(SlottedModel, Permissible):
The id of the afk channel. The id of the afk channel.
embed_channel_id : snowflake embed_channel_id : snowflake
The id of the embed channel. The id of the embed channel.
system_channel_id : snowflake
The id of the system channel.
name : str name : str
Guild's name. Guild's name.
icon : str icon : str
@ -301,6 +303,7 @@ class Guild(SlottedModel, Permissible):
owner_id = Field(snowflake) owner_id = Field(snowflake)
afk_channel_id = Field(snowflake) afk_channel_id = Field(snowflake)
embed_channel_id = Field(snowflake) embed_channel_id = Field(snowflake)
system_channel_id = Field(snowflake)
name = Field(text) name = Field(text)
icon = Field(text) icon = Field(text)
splash = Field(text) splash = Field(text)
@ -468,6 +471,10 @@ class Guild(SlottedModel, Permissible):
def splash_url(self): def splash_url(self):
return self.get_splash_url() return self.get_splash_url()
@property
def system_channel(self):
return self.channels.get(self.system_channel_id)
@property @property
def audit_log(self): def audit_log(self):
return self.audit_log_iter() return self.audit_log_iter()

3
disco/types/message.py

@ -22,7 +22,8 @@ MessageType = Enum(
CALL=3, CALL=3,
CHANNEL_NAME_CHANGE=4, CHANNEL_NAME_CHANGE=4,
CHANNEL_ICON_CHANGE=5, CHANNEL_ICON_CHANGE=5,
PINS_ADD=6 PINS_ADD=6,
GUILD_MEMBER_JOIN=7,
) )

Loading…
Cancel
Save