Invitations

Invites are managed by two system entities:

sys{
    OwnedInvite{
        room: Base64 nullable,
        authorisation: Base64 nullable,
    }

    Invite{
        invite_id: Base64,
        application : String,
        invite_sign: Base64,
    }

OwnedInvite contains invites you have created:

Invite contains the invites that you have accepted and contains the information that will allow you to verify the peer validity during the first connection.

You can delete tuples from those entities to cancel invites.