mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
Co-authored-by: Calin-Teodor <calin.chitu@8x8.com> Co-authored-by: Saúl Ibarra Corretgé <saghul@jitsi.org>
9 lines
294 B
TypeScript
9 lines
294 B
TypeScript
/**
|
|
* Converts the meetingOptions domain and roomName to a URL that can be passed to the App component.
|
|
* @param {*} domain domain address from props.
|
|
* @param {*} roomName room name from props.
|
|
*/
|
|
export function convertPropsToURL(domain, roomName) {
|
|
return `${domain}/${roomName}`;
|
|
}
|