enables/disables an ability to perform calls
webix.ui({
view: "chat",
token, // token got from the server
url: "https://docs.webix.com/chat-backend/",
calls: {
enabled: true
}
});
Depending on the properties of the "calls" object, Chat uses different types of connections: P2P or LiveKit. Possible configurations are:
calls: true // or calls: { enabled: true }
calls: {
enabled: true
groupCalls: true,
livekitConfig: {
host: "https://livekit.webix.io"
}
}
calls: {
enabled: true
groupCalls: false,
livekitConfig: {
host: "https://livekit.webix.io"
}
}
Please note that you should configure LiveKit server to establish a LiveKit connection.