aboutsummaryrefslogtreecommitdiff
path: root/app/features/config/index.js
blob: dde9fb33b7bbdf2e218dc5eb65a7446df31d98e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

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'
};