* Updated privacy policy link * Removed broken link from fa language * Updated terms of use link * Updated pricing links * Updated self hosted billing links * Updated terms-of-use links * Updated privacy-policy links across the project * Updated pricing links in e2e tests * Updated cloud billing docs * Fixed upgrading mattermost server links * Updated ssl client certificate links * Updated configure session lenghts links * Updated configure site url links * Updated elasticsearch links * Update data retention policy links * Updated ldap links * advanced-permissions * Updated anchor ServiceSettings.ListenAddress * Updated anchor #SystemSettings.Forward80To443 * Updated link desktop managed resources * Updated elasticsearch links * Updated file content extraction links * Updated HA Cluster inks * Updated setup image proxy link * Updated push notification links * Update performance monitoring links * Help links * Updated about mattermost links * updated report a problem links * Updated download apps links * Updated mobile apps links * Update share messages links * Updated format messages links * Updated in product notices links * Updated multi factor auth links * Updated LDAP links * Updated setup saml links * Updated saml/ldap configuration links * Updated plugins URL * Updated plugin signing links * Updated webhook links * Updated slash commands links * Updated oauth2 links * Updated webhook links * Update enable oauth2 links * Updated personal access tokens list * Updated experimental links * Updated snap files * check-style * privacy/terms links in about modal
58 строки
1.5 KiB
JavaScript
58 строки
1.5 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://docs.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 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,
|
|
};
|
|
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;
|