Browse Source

Rename Invite.create -> create_for_channel

This was smashing a base model method
pull/27/head
Andrei 8 years ago
parent
commit
d9f619f007
  1. 2
      disco/types/invite.py

2
disco/types/invite.py

@ -40,7 +40,7 @@ class Invite(SlottedModel):
created_at = Field(datetime)
@classmethod
def create(cls, channel, max_age=86400, max_uses=0, temporary=False, unique=False):
def create_for_channel(cls, channel, max_age=86400, max_uses=0, temporary=False, unique=False):
return channel.client.api.channels_invites_create(
channel.id,
max_age=max_age,

Loading…
Cancel
Save