17 lines
435 B
TypeScript
17 lines
435 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export default {
|
|
SKU_SHORT_NAME: {
|
|
E10: 'E10',
|
|
E20: 'E20',
|
|
Starter: 'starter',
|
|
Professional: 'professional',
|
|
Enterprise: 'enterprise',
|
|
},
|
|
SelfHostedProducts: {
|
|
STARTER: 'starter',
|
|
PROFESSIONAL: 'professional',
|
|
ENTERPRISE: 'enterprise',
|
|
},
|
|
};
|