mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-04 21:02:35 +08:00
Co-authored-by: Nithin David Thomas <[email protected]> Co-authored-by: iamsivin <[email protected]>
6 lines
247 B
JavaScript
6 lines
247 B
JavaScript
const DYTE_MEETING_LINK = 'https://app.dyte.in/meeting/stage/';
|
|
|
|
export const buildDyteURL = (roomName, dyteAuthToken) => {
|
|
return `${DYTE_MEETING_LINK}${roomName}?authToken=${dyteAuthToken}&showSetupScreen=true&disableVideoBackground=true`;
|
|
};
|