mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const FEEDBACK_EMAIL = 'test@example.com';
|
|
export const ABOUT_LINK = 'https://mattermost.com/pl/about-mattermost';
|
|
export const ASK_COMMUNITY_LINK = 'https://mattermost.com/pl/default-ask-mattermost-community/';
|
|
export const HELP_LINK = 'https://mattermost.com/pl/help/';
|
|
export const PRIVACY_POLICY_LINK = 'https://mattermost.com/pl/privacy-policy/';
|
|
export const REPORT_A_PROBLEM_LINK = 'https://mattermost.com/pl/report-a-bug';
|
|
export const TERMS_OF_SERVICE_LINK = 'https://mattermost.com/pl/terms-of-use/';
|
|
export const MATTERMOST_USER_GUIDE = 'https://docs.mattermost.com/guides/use-mattermost.html';
|
|
|
|
export const CLOUD = 'Cloud';
|
|
export const E20 = 'E20';
|
|
export const TEAM = 'Team';
|
|
|
|
export const FixedPublicLinks = {
|
|
TermsOfService: 'https://mattermost.com/pl/terms-of-use/',
|
|
PrivacyPolicy: 'https://mattermost.com/pl/privacy-policy/',
|
|
};
|
|
|
|
export const SupportSettings = {
|
|
ABOUT_LINK,
|
|
ASK_COMMUNITY_LINK,
|
|
HELP_LINK,
|
|
PRIVACY_POLICY_LINK,
|
|
REPORT_A_PROBLEM_LINK,
|
|
TERMS_OF_SERVICE_LINK,
|
|
MATTERMOST_USER_GUIDE,
|
|
};
|
|
|
|
export const FixedCloudConfig = {
|
|
EmailSettings: {
|
|
FEEDBACK_EMAIL,
|
|
},
|
|
SupportSettings,
|
|
};
|
|
|
|
export const ServerEdition = {
|
|
CLOUD,
|
|
E20,
|
|
TEAM,
|
|
};
|
|
|
|
export const Constants = {
|
|
FixedCloudConfig,
|
|
ServerEdition,
|
|
};
|
|
|
|
export const CustomStatusDuration = {
|
|
DONT_CLEAR: '',
|
|
THIRTY_MINUTES: 'thirty_minutes',
|
|
ONE_HOUR: 'one_hour',
|
|
FOUR_HOURS: 'four_hours',
|
|
TODAY: 'today',
|
|
THIS_WEEK: 'this_week',
|
|
DATE_AND_TIME: 'date_and_time',
|
|
};
|
|
|
|
export default Constants;
|