* remove API call to config/pass iceServers; leave call on ws error * cloud limits * fix makeStyleSheetFromTheme * revert podfile & package-lock diffs * update snapshots * edge case of cloud server on calls 0.5.3
19 lines
606 B
TypeScript
19 lines
606 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
const RefreshConfigMillis = 20 * 60 * 1000; // Refresh config after 20 minutes
|
|
|
|
const RequiredServer = {
|
|
FULL_VERSION: '6.3.0',
|
|
MAJOR_VERSION: 6,
|
|
MIN_VERSION: 3,
|
|
PATCH_VERSION: 0,
|
|
};
|
|
|
|
const PluginId = 'com.mattermost.calls';
|
|
|
|
// Used for case when cloud server is using Calls v0.5.3.
|
|
// This can be removed when v0.5.4 is prepackaged in cloud.
|
|
const DefaultCloudMaxParticipants = 8;
|
|
|
|
export default {RequiredServer, RefreshConfigMillis, PluginId, DefaultCloudMaxParticipants};
|