mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
Co-authored-by: Nithin David Thomas <1277421+nithindavid@users.noreply.github.com> Co-authored-by: iamsivin <iamsivin@gmail.com>
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`;
|
|
};
|