jitsi-meet-electron/app/features/config/index.js
2020-05-14 15:10:46 +02:00

43 lines
897 B
JavaScript

export default {
/**
* The URL with extra information about the app / service.
*/
aboutURL: 'https://jitsi.org/what-is-jitsi/',
/**
* The URL to the source code repository.
*/
sourceURL: 'https://github.com/jitsi/jitsi-meet-electron',
/**
* Application name.
*/
appName: 'Jitsi Meet',
/**
* The default server URL of Jitsi Meet Deployment that will be used.
*/
defaultServerURL: 'https://meet.jit.si',
/**
* The default server Timeout in seconds.
*/
defaultServerTimeout: 10,
/**
* 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'
};