mirror of
https://github.com/bitwarden/mobile.git
synced 2025-02-22 02:11:25 +01:00
Merge branch 'main' into feature/maui-migration
This commit is contained in:
commit
66f0471f2e
@ -13,6 +13,11 @@
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public const string WEB_VAULT_SETTINGS_FORMAT = "{0}/#/settings";
|
public const string WEB_VAULT_SETTINGS_FORMAT = "{0}/#/settings";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Link to go to individual vault import page. Requires to pass vault URL as parameter.
|
||||||
|
/// </summary>
|
||||||
|
public const string WEB_VAULT_TOOLS_IMPORT_FORMAT = "{0}/#/tools/import";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// General website, not in the full format of a URL given that this is used as parameter of string resources to be shown to the user.
|
/// General website, not in the full format of a URL given that this is used as parameter of string resources to be shown to the user.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -41,11 +41,11 @@ namespace Bit.App.Pages
|
|||||||
|
|
||||||
private async Task GoToImportItemsAsync()
|
private async Task GoToImportItemsAsync()
|
||||||
{
|
{
|
||||||
var webVaultUrl = _environmentService.GetWebVaultUrl();
|
var toolsImportUrl = string.Format(ExternalLinksConstants.WEB_VAULT_TOOLS_IMPORT_FORMAT, _environmentService.GetWebVaultUrl());
|
||||||
var body = string.Format(AppResources.YouCanImportDataToYourVaultOnX, webVaultUrl);
|
var body = string.Format(AppResources.YouCanImportDataToYourVaultOnX, toolsImportUrl);
|
||||||
if (await _platformUtilsService.ShowDialogAsync(body, AppResources.ContinueToWebApp, AppResources.Continue, AppResources.Cancel))
|
if (await _platformUtilsService.ShowDialogAsync(body, AppResources.ContinueToWebApp, AppResources.Continue, AppResources.Cancel))
|
||||||
{
|
{
|
||||||
_platformUtilsService.LaunchUri(webVaultUrl);
|
_platformUtilsService.LaunchUri(toolsImportUrl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user