Skip to content

Commit

Permalink
Merge pull request #530 from DominikPalo/fix_channels_join_args
Browse files Browse the repository at this point in the history
Make the validate argument in the channels.join method optional
  • Loading branch information
aoberoi committed Apr 13, 2018
2 parents 3bed1fc + 561d523 commit fb19909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/methods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export type ChannelsInviteArguments = TokenOverridable & {
};
export type ChannelsJoinArguments = TokenOverridable & {
name: string;
validate: boolean;
validate?: boolean;
};
export type ChannelsKickArguments = TokenOverridable & {
channel: string;
Expand Down

0 comments on commit fb19909

Please sign in to comment.