1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-11-01 04:24:19 +00:00

API: Added JoinInvite

This commit is contained in:
diamondburned 2020-12-31 00:16:43 -08:00
parent 05de2d7b61
commit 700b55102d

View file

@ -91,6 +91,21 @@ func (c *Client) CreateInvite(
) )
} }
// JoinedInvite is returned after joining an invite.
type JoinedInvite struct {
Code string `json:"code"`
NewMember bool `json:"new_member"`
Guild discord.Guild `json:"guild"`
Channel discord.Channel `json:"channel"` // id, name, type only
}
// JoinInvite joins a guild using the given invite code. This endpoint is
// undocumented.
func (c *Client) JoinInvite(code string) (*JoinedInvite, error) {
var inv *JoinedInvite
return inv, c.RequestJSON(&inv, "POST", EndpointInvites+code)
}
// DeleteInvite deletes an invite. // DeleteInvite deletes an invite.
// //
// Requires the MANAGE_CHANNELS permission on the channel this invite belongs // Requires the MANAGE_CHANNELS permission on the channel this invite belongs