From 3491c1aaebaee5e9c80f12ca428970732fcc6900 Mon Sep 17 00:00:00 2001 From: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com> Date: Tue, 8 Feb 2022 17:42:53 -0600 Subject: [PATCH] [Help] Update links to new pattern (#1758) --- src/App/Pages/Accounts/TwoFactorPageViewModel.cs | 2 +- .../Settings/SettingsPage/SettingsPageViewModel.cs | 12 ++++++------ src/App/Pages/Vault/AddEditPageViewModel.cs | 2 +- src/App/Pages/Vault/AttachmentsPageViewModel.cs | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/App/Pages/Accounts/TwoFactorPageViewModel.cs b/src/App/Pages/Accounts/TwoFactorPageViewModel.cs index f663c4217..c2f1eb6b6 100644 --- a/src/App/Pages/Accounts/TwoFactorPageViewModel.cs +++ b/src/App/Pages/Accounts/TwoFactorPageViewModel.cs @@ -328,7 +328,7 @@ namespace Bit.App.Pages AppResources.Cancel, null, options.ToArray()); if (method == AppResources.RecoveryCodeTitle) { - _platformUtilsService.LaunchUri("https://help.bitwarden.com/article/lost-two-step-device/"); + _platformUtilsService.LaunchUri("https://bitwarden.com/help/lost-two-step-device/"); } else if (method != AppResources.Cancel && method != null) { diff --git a/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs b/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs index ec9121fc5..11f389841 100644 --- a/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs +++ b/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs @@ -157,7 +157,7 @@ namespace Bit.App.Pages public void Help() { - _platformUtilsService.LaunchUri("https://help.bitwarden.com/"); + _platformUtilsService.LaunchUri("https://bitwarden.com/help/"); } public async Task FingerprintAsync() @@ -177,7 +177,7 @@ namespace Bit.App.Pages AppResources.LearnMore, AppResources.Close); if (learnMore) { - _platformUtilsService.LaunchUri("https://help.bitwarden.com/article/fingerprint-phrase/"); + _platformUtilsService.LaunchUri("https://bitwarden.com/help/fingerprint-phrase/"); } } @@ -188,7 +188,7 @@ namespace Bit.App.Pages public void Import() { - _platformUtilsService.LaunchUri("https://help.bitwarden.com/article/import-data/"); + _platformUtilsService.LaunchUri("https://bitwarden.com/help/import-data/"); } public void WebVault() @@ -207,7 +207,7 @@ namespace Bit.App.Pages AppResources.LearnOrg, AppResources.Yes, AppResources.Cancel); if (confirmed) { - _platformUtilsService.LaunchUri("https://help.bitwarden.com/article/what-is-an-organization/"); + _platformUtilsService.LaunchUri("https://bitwarden.com/help/about-organizations/"); } } @@ -217,7 +217,7 @@ namespace Bit.App.Pages AppResources.TwoStepLogin, AppResources.Yes, AppResources.Cancel); if (confirmed) { - _platformUtilsService.LaunchUri("https://help.bitwarden.com/article/setup-two-step-login/"); + _platformUtilsService.LaunchUri("https://bitwarden.com/help/setup-two-step-login/"); } } @@ -227,7 +227,7 @@ namespace Bit.App.Pages AppResources.ChangeMasterPassword, AppResources.Yes, AppResources.Cancel); if (confirmed) { - _platformUtilsService.LaunchUri("https://help.bitwarden.com/article/change-your-master-password/"); + _platformUtilsService.LaunchUri("https://bitwarden.com/help/master-password/#change-your-master-password"); } } diff --git a/src/App/Pages/Vault/AddEditPageViewModel.cs b/src/App/Pages/Vault/AddEditPageViewModel.cs index 52d648b38..2e8925b00 100644 --- a/src/App/Pages/Vault/AddEditPageViewModel.cs +++ b/src/App/Pages/Vault/AddEditPageViewModel.cs @@ -759,7 +759,7 @@ namespace Bit.App.Pages public void PasswordPromptHelp() { - _platformUtilsService.LaunchUri("https://bitwarden.com/help/article/managing-items/#protect-individual-items"); + _platformUtilsService.LaunchUri("https://bitwarden.com/help/managing-items/#protect-individual-items"); } private void TypeChanged() diff --git a/src/App/Pages/Vault/AttachmentsPageViewModel.cs b/src/App/Pages/Vault/AttachmentsPageViewModel.cs index 08f859202..8480221c2 100644 --- a/src/App/Pages/Vault/AttachmentsPageViewModel.cs +++ b/src/App/Pages/Vault/AttachmentsPageViewModel.cs @@ -78,7 +78,7 @@ namespace Bit.App.Pages AppResources.FeatureUnavailable, AppResources.LearnMore, AppResources.Cancel); if (confirmed) { - _platformUtilsService.LaunchUri("https://help.bitwarden.com/article/update-encryption-key/"); + _platformUtilsService.LaunchUri("https://bitwarden.com/help/account-encryption-key/#rotate-your-encryption-key"); } } }