Files
clientsflow/research/chatwoot/app/javascript/shared/helpers/IntegrationHelper.js

6 lines
220 B
JavaScript

const DYTE_MEETING_LINK = 'https://app.dyte.io/v2/meeting';
export const buildDyteURL = dyteAuthToken => {
return `${DYTE_MEETING_LINK}?authToken=${dyteAuthToken}&showSetupScreen=true&disableVideoBackground=true`;
};