jitsi-meet-electron/app/features/config/index.js
Saúl Ibarra Corretgé 01c2468666 Update feedback URL
2021-02-23 10:56:29 +01:00

49 lines
1.1 KiB
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 prefix for application protocol.
* You will also need to replace this in package.json.
*/
appProtocolPrefix: '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: 30,
/**
* URL to send feedback.
*/
feedbackURL: 'https://github.com/jitsi/jitsi-meet-electron/issues',
/**
* 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'
};