dafac94aec
* [#449] added debounce for websocket updates * [#449] changed behavior to have disableable debounce + changed debounced messages data storage to be handled by websocket Gate
15 lines
641 B
JavaScript
15 lines
641 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 MAIL_SPA_URL = "https://mail.example.com";
|
|
var VIDEO_CONFERENCE_BASE_URL = "https://meet.linagora.com";
|
|
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
|