Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jitsi-meet/react/features/calendar-sync/constants.ts

35 lines
694 B

/**
* An enumeration of support calendar integration types.
*
* @enum {string}
*/
export const CALENDAR_TYPE = {
GOOGLE: 'google',
MICROSOFT: 'microsoft'
};
/**
* An enumeration of known errors that can occur while interacting with the
* calendar integration.
*
* @enum {string}
*/
export const ERRORS = {
AUTH_FAILED: 'sign_in_failed',
GOOGLE_APP_MISCONFIGURED: 'idpiframe_initialization_failed'
};
/**
* The number of days to fetch.
*/
export const FETCH_END_DAYS = 10;
/**
* The number of days to go back when fetching.
*/
export const FETCH_START_DAYS = -1;
/**
* The max number of events to fetch from the calendar.
*/
export const MAX_LIST_LENGTH = 10;