Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

constants.ts 410B

123456789101112
  1. import { IFRAME_EMBED_ALLOWED_LOCATIONS as ADDITIONAL_LOCATIONS } from './extraConstants';
  2. /**
  3. * Timeout of the conference when iframe is disabled in minutes.
  4. */
  5. export const IFRAME_DISABLED_TIMEOUT_MINUTES = 5;
  6. /**
  7. * A list of allowed location to embed iframe.
  8. */
  9. /* eslint-disable-next-line no-extra-parens*/
  10. export const IFRAME_EMBED_ALLOWED_LOCATIONS = ([] as string[]).concat(ADDITIONAL_LOCATIONS);