[MM-52869] Update and fix links in the system console (#23694)
* 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
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
0904be43f8
Коммит
f3a9f166bb
@@ -188,6 +188,6 @@ describe('System Console - Empty Billing Screen', () => {
|
||||
|
||||
it('should show empty screen picture and link to /cloud-billing.html', () => {
|
||||
cy.get('.BillingHistory__cardHeaderText-bottom').should('have.text', 'All of your invoices will be shown here');
|
||||
cy.get('.BillingHistory__noHistory-link').should('have.text', 'See how billing works').should('have.attr', 'href').and('include', 'cloud/cloud-billing/cloud-billing.html');
|
||||
cy.get('.BillingHistory__noHistory-link').should('have.text', 'See how billing works').should('have.attr', 'href').and('include', '/pl/cloud-billing');
|
||||
});
|
||||
});
|
||||
|
||||
@@ -189,6 +189,6 @@ describe('Self hosted Pricing modal', () => {
|
||||
|
||||
cy.get('.air-gapped-purchase-modal').should('exist');
|
||||
|
||||
cy.findByText('https://mattermost.com/pricing/#self-hosted').last().should('exist');
|
||||
cy.findByText('https://mattermost.com/pl/pricing/#self-hosted').last().should('exist');
|
||||
});
|
||||
});
|
||||
|
||||
@@ -39,7 +39,7 @@ describe('Customization', () => {
|
||||
cy.findByTestId('SupportSettings.ReportAProblemLinkhelp-text').find('span').should('be.visible').and('have.text', 'The URL for the Report a Problem link in the Help Menu. If this field is empty, the link is removed from the Help Menu.');
|
||||
|
||||
// # Enter a problem link
|
||||
const reportAProblemLink = 'https://mattermost.com/default-report-a-problem/';
|
||||
const reportAProblemLink = 'https://mattermost.com/pl/report-a-bug';
|
||||
cy.findByTestId('SupportSettings.ReportAProblemLinkinput').clear().type(reportAProblemLink);
|
||||
|
||||
// # Save setting
|
||||
|
||||
@@ -222,11 +222,11 @@
|
||||
"ShowFullName": true
|
||||
},
|
||||
"SupportSettings": {
|
||||
"TermsOfServiceLink": "https://mattermost.com/terms-of-use/",
|
||||
"PrivacyPolicyLink": "https://mattermost.com/privacy-policy/",
|
||||
"AboutLink": "https://docs.mattermost.com/about/product.html",
|
||||
"HelpLink": "https://mattermost.com/default-help/",
|
||||
"ReportAProblemLink": "https://mattermost.com/default-report-a-problem/",
|
||||
"TermsOfServiceLink": "https://mattermost.com/pl/terms-of-use/",
|
||||
"PrivacyPolicyLink": "https://mattermost.com/pl/privacy-policy/",
|
||||
"AboutLink": "https://docs.mattermost.com/pl/about-mattermost",
|
||||
"HelpLink": "https://mattermost.com/pl/help/",
|
||||
"ReportAProblemLink": "https://mattermost.com/pl/report-a-bug",
|
||||
"SupportEmail": "",
|
||||
"CustomTermsOfServiceEnabled": false,
|
||||
"CustomTermsOfServiceReAcceptancePeriod": 365,
|
||||
@@ -355,9 +355,9 @@
|
||||
"LoginButtonTextColor": "#ffffff"
|
||||
},
|
||||
"NativeAppSettings": {
|
||||
"AppDownloadLink": "https://mattermost.com/download/#mattermostApps",
|
||||
"AndroidAppDownloadLink": "https://mattermost.com/mattermost-android-app/",
|
||||
"IosAppDownloadLink": "https://mattermost.com/mattermost-ios-app/"
|
||||
"AppDownloadLink": "https://mattermost.com/pl/download-apps",
|
||||
"AndroidAppDownloadLink": "https://mattermost.com/pl/android-app/",
|
||||
"IosAppDownloadLink": "https://mattermost.com/pl/ios-app/"
|
||||
},
|
||||
"MetricsSettings": {
|
||||
"Enable": false,
|
||||
|
||||
@@ -2,20 +2,20 @@
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
export const FEEDBACK_EMAIL = 'test@example.com';
|
||||
export const ABOUT_LINK = 'https://docs.mattermost.com/about/product.html';
|
||||
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/default-help/';
|
||||
export const PRIVACY_POLICY_LINK = 'https://mattermost.com/privacy-policy/';
|
||||
export const REPORT_A_PROBLEM_LINK = 'https://mattermost.com/default-report-a-problem/';
|
||||
export const TERMS_OF_SERVICE_LINK = 'https://mattermost.com/terms-of-use/';
|
||||
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/terms-of-use/',
|
||||
PrivacyPolicy: 'https://mattermost.com/privacy-policy/',
|
||||
TermsOfService: 'https://mattermost.com/pl/terms-of-use/',
|
||||
PrivacyPolicy: 'https://mattermost.com/pl/privacy-policy/',
|
||||
};
|
||||
|
||||
export const SupportSettings = {
|
||||
|
||||
@@ -111,7 +111,7 @@ export function getWelcomeEmailTemplate(userEmail, siteName, teamName) {
|
||||
'Download the desktop and mobile apps',
|
||||
'For the best experience, download the apps for PC, Mac, iOS and Android.',
|
||||
'',
|
||||
'Download ( https://mattermost.com/download/#mattermostApps )',
|
||||
'Download ( https://mattermost.com/pl/download-apps )',
|
||||
'',
|
||||
'© 2022 Mattermost, Inc. 530 Lytton Avenue, Second floor, Palo Alto, CA, 94301',
|
||||
];
|
||||
|
||||
Ссылка в новой задаче
Block a user