restore account details navigation command
This commit is contained in:
@@ -206,6 +206,18 @@ public partial class AccountManagementViewModel : AccountManagementPageViewModel
|
|||||||
return await completionSource.Task.ConfigureAwait(false);
|
return await completionSource.Task.ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[RelayCommand]
|
||||||
|
private void NavigateToAccount(AccountProviderDetailViewModel accountDetails)
|
||||||
|
{
|
||||||
|
if (accountDetails == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Messenger.Send(new BreadcrumbNavigationRequested(Translator.SettingsManageAccountSettings_Title, WinoPage.ManageAccountsPage));
|
||||||
|
Messenger.Send(new BreadcrumbNavigationRequested(GetAccountDetailsTitle(accountDetails.Account), WinoPage.AccountDetailsPage, accountDetails.Account.Id));
|
||||||
|
}
|
||||||
|
|
||||||
[RelayCommand]
|
[RelayCommand]
|
||||||
private void EditMergedAccounts(MergedAccountProviderDetailViewModel mergedAccountProviderDetailViewModel)
|
private void EditMergedAccounts(MergedAccountProviderDetailViewModel mergedAccountProviderDetailViewModel)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user