cadfa70e60
* #708 apply strictier linting rules and fix simple eslint bugs * #708 fix eslint errors relate to promise * #708 fix eslint import/no-extraneous-dependencies * #708 fix eslint errors of react-hook * #708 enable eslint check for typescript --------- Co-authored-by: lethemanh <lethemanh@lethemanhs-MacBook-Pro.local>
19 lines
787 B
JavaScript
19 lines
787 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
|