multiparty-meeting/app/lib/urlFactory.js

8 lines
187 B
JavaScript

export function getProtooUrl(peerName, roomId)
{
const hostname = window.location.hostname;
const url = `wss://${hostname}:3443/?peerName=${peerName}&roomId=${roomId}`;
return url;
}