CIRCChanMode.setInvite Member
Sets or clears the invite-only mode.
Syntax
object.setInvite(f);
Arguments
Argument | Summary |
---|---|
f |
Returns
Remarks
See Also
Source Code
function chan_invite (f)
{
var modifier = (f) ? "+" : "-";
this.parent.parent.sendData("MODE " + this.parent.encodedName + " " +
modifier + "i\n");
return true;
}