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.

constants.ts 701B

1234567891011121314151617181920212223242526
  1. /**
  2. * The URL for Google Privacy Policy.
  3. */
  4. export const GOOGLE_PRIVACY_POLICY = 'https://policies.google.com/privacy';
  5. /**
  6. * The URL that is the main landing page for YouTube live streaming and should
  7. * have a user's live stream key.
  8. */
  9. export const YOUTUBE_LIVE_DASHBOARD_URL = 'https://www.youtube.com/live_dashboard';
  10. /**
  11. * The URL for YouTube terms and conditions.
  12. */
  13. export const YOUTUBE_TERMS_URL = 'https://www.youtube.com/t/terms';
  14. /**
  15. * The live streaming help link to display.
  16. */
  17. export const JITSI_LIVE_STREAMING_HELP_LINK = 'https://jitsi.org/live';
  18. /**
  19. * The YouTube stream link RegExp.
  20. */
  21. export const FOUR_GROUPS_DASH_SEPARATED = /^(?:[a-zA-Z0-9]{4}(?:-(?!$)|$)){4}/;