jitsi-meet-electron/app/features/config/index.js
Akshit Kr Nagpal d73f80e7bf Refactor handling of domain
Use the concept of a "server URL", since it's URLs we are dealing with,
not actul domains.
2018-06-25 16:40:43 +02:00

28 lines
549 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'
};