20 lines
872 B
JavaScript
20 lines
872 B
JavaScript
var SSO_BASE_URL = 'https://example.com'
|
|
var SSO_CLIENT_ID = 'example'
|
|
var SSO_SCOPE = 'openid profile email'
|
|
var SSO_REDIRECT_URI = 'https://example.com/callback'
|
|
var SSO_RESPONSE_TYPE = 'code'
|
|
var SSO_CODE_CHALLENGE_METHOD = 'S256'
|
|
var SSO_POST_LOGOUT_REDIRECT = 'http://example.com?logout=1'
|
|
var CALENDAR_BASE_URL = 'https://calendar.example.com'
|
|
var DAV_BASE_URL = 'https://dav.example.com'
|
|
var MAIL_SPA_URL = 'https://mail.example.com'
|
|
var VIDEO_CONFERENCE_BASE_URL = 'https://meet.linagora.com'
|
|
var SUPPORT_URL = 'https://twake.app/support/'
|
|
var DEBUG = false
|
|
var LANG = 'en'
|
|
var WEBSOCKET_URL = 'wss://calendar.example.com'
|
|
var WS_DEBOUNCE_PERIOD_MS = 100 // milliseconds, remove or set to 0 to disable debounce
|
|
var WS_PING_PERIOD_MS = 30000
|
|
var WS_PING_TIMEOUT_PERIOD_MS = 35000
|
|
// var SENTRY_DSN = "https://...@sentry.io/..."; // optional, omit to disable Sentry
|