Files
chatwoot/app/javascript/shared/helpers/IntegrationHelper.js
2023-01-09 11:52:31 -08:00

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`;
};