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: '7.1.0',
|
|
MAJOR_VERSION: 7,
|
|
MIN_VERSION: 1,
|
|
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};
|