| 123456789101112131415 | // @flow
/**
 * A list of domains we consider jitsi-enabled domains by default. This is in
 * line with the app links on iOS and Android, but stands here as retreiving
 * those programatically is not straightforward.
 */
export const JITSI_KNOWN_DOMAINS = [
    'beta.meet.jit.si',
    'beta.hipchat.me',
    'chaos.hipchat.me',
    'enso.me',
    'hipchat.me',
    'meet.jit.si'
];
 |