jitsi-meet-electron/app/features/config/index.js
akshitkrnagpal 3bd9970c12 Add ability to configure the server URL
The configured server URL will be used when the room URL is not
a full URL. If a full URL is given, the target server is joined.

The default server URL is https://meet.jit.si
2018-06-25 21:33:28 +02:00

28 lines
548 B
JavaScript

export default {
/**
* Application name.
*/
appName: 'Jitsi Meet',
/**
* The default server URL of Jitsi Meet Deployment that will be used.
*/
defaultServerURL: 'https://meet.jit.si',
/**
* URL to send feedback.
*/
feedbackURL: 'mailto:support@jitsi.org',
/**
* The url of Privacy Policy Page.
*/
privacyPolicyURL: 'https://jitsi.org/meet/privacy',
/**
* The url of Terms and Conditions Page.
*/
termsAndConditionsURL: 'https://jitsi.org/meet/terms'
};