[Help] Update links to new pattern (#1758)

This commit is contained in:
Vincent Salucci 2022-02-08 17:42:53 -06:00 committed by GitHub
parent 427ff09af0
commit 3491c1aaeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 9 deletions

View file

@ -328,7 +328,7 @@ namespace Bit.App.Pages
AppResources.Cancel, null, options.ToArray()); AppResources.Cancel, null, options.ToArray());
if (method == AppResources.RecoveryCodeTitle) 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) else if (method != AppResources.Cancel && method != null)
{ {

View file

@ -157,7 +157,7 @@ namespace Bit.App.Pages
public void Help() public void Help()
{ {
_platformUtilsService.LaunchUri("https://help.bitwarden.com/"); _platformUtilsService.LaunchUri("https://bitwarden.com/help/");
} }
public async Task FingerprintAsync() public async Task FingerprintAsync()
@ -177,7 +177,7 @@ namespace Bit.App.Pages
AppResources.LearnMore, AppResources.Close); AppResources.LearnMore, AppResources.Close);
if (learnMore) 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() public void Import()
{ {
_platformUtilsService.LaunchUri("https://help.bitwarden.com/article/import-data/"); _platformUtilsService.LaunchUri("https://bitwarden.com/help/import-data/");
} }
public void WebVault() public void WebVault()
@ -207,7 +207,7 @@ namespace Bit.App.Pages
AppResources.LearnOrg, AppResources.Yes, AppResources.Cancel); AppResources.LearnOrg, AppResources.Yes, AppResources.Cancel);
if (confirmed) 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); AppResources.TwoStepLogin, AppResources.Yes, AppResources.Cancel);
if (confirmed) 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); AppResources.ChangeMasterPassword, AppResources.Yes, AppResources.Cancel);
if (confirmed) 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");
} }
} }

View file

@ -759,7 +759,7 @@ namespace Bit.App.Pages
public void PasswordPromptHelp() 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() private void TypeChanged()

View file

@ -78,7 +78,7 @@ namespace Bit.App.Pages
AppResources.FeatureUnavailable, AppResources.LearnMore, AppResources.Cancel); AppResources.FeatureUnavailable, AppResources.LearnMore, AppResources.Cancel);
if (confirmed) 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");
} }
} }
} }