Interface ChatActionUserJoinedApproved

A user has joined the channel using an invite link and was approved by an admin

interface ChatActionUserJoinedApproved {
    approvedBy: User;
    link: ChatInviteLink;
    type: "user_joined_approved";
}

Properties

Properties

approvedBy: User

User who approved the join

Invite link user to join

type: "user_joined_approved"