From f843a679b25c2c4fce19195a5292b23c1eefe5d6 Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Wed, 9 Jun 2021 17:43:52 +0800 Subject: [PATCH] Add TenantId to ResetPasswordDto --- .../Volo/Abp/Account/ResetPasswordDto.cs | 2 ++ .../Volo/Abp/Account/AccountAppService.cs | 19 ++++++++++-------- .../Pages/Account/ResetPassword.cshtml.cs | 20 +++++++++---------- 3 files changed, 22 insertions(+), 19 deletions(-) diff --git a/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo/Abp/Account/ResetPasswordDto.cs b/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo/Abp/Account/ResetPasswordDto.cs index 2423e6c778..695fcfca91 100644 --- a/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo/Abp/Account/ResetPasswordDto.cs +++ b/modules/account/src/Volo.Abp.Account.Application.Contracts/Volo/Abp/Account/ResetPasswordDto.cs @@ -8,6 +8,8 @@ namespace Volo.Abp.Account { public Guid UserId { get; set; } + public Guid? TenantId { get; set; } + [Required] public string ResetToken { get; set; } diff --git a/modules/account/src/Volo.Abp.Account.Application/Volo/Abp/Account/AccountAppService.cs b/modules/account/src/Volo.Abp.Account.Application/Volo/Abp/Account/AccountAppService.cs index 05ff98b35b..22c7e20b54 100644 --- a/modules/account/src/Volo.Abp.Account.Application/Volo/Abp/Account/AccountAppService.cs +++ b/modules/account/src/Volo.Abp.Account.Application/Volo/Abp/Account/AccountAppService.cs @@ -62,16 +62,19 @@ namespace Volo.Abp.Account public virtual async Task ResetPasswordAsync(ResetPasswordDto input) { - await IdentityOptions.SetAsync(); + using (CurrentTenant.Change(input.TenantId)) + { + await IdentityOptions.SetAsync(); - var user = await UserManager.GetByIdAsync(input.UserId); - (await UserManager.ResetPasswordAsync(user, input.ResetToken, input.Password)).CheckErrors(); + var user = await UserManager.GetByIdAsync(input.UserId); + (await UserManager.ResetPasswordAsync(user, input.ResetToken, input.Password)).CheckErrors(); - await IdentitySecurityLogManager.SaveAsync(new IdentitySecurityLogContext - { - Identity = IdentitySecurityLogIdentityConsts.Identity, - Action = IdentitySecurityLogActionConsts.ChangePassword - }); + await IdentitySecurityLogManager.SaveAsync(new IdentitySecurityLogContext + { + Identity = IdentitySecurityLogIdentityConsts.Identity, + Action = IdentitySecurityLogActionConsts.ChangePassword + }); + } } protected virtual async Task GetUserByEmail(string email) diff --git a/modules/account/src/Volo.Abp.Account.Web/Pages/Account/ResetPassword.cshtml.cs b/modules/account/src/Volo.Abp.Account.Web/Pages/Account/ResetPassword.cshtml.cs index c0cd463924..6aed769f76 100644 --- a/modules/account/src/Volo.Abp.Account.Web/Pages/Account/ResetPassword.cshtml.cs +++ b/modules/account/src/Volo.Abp.Account.Web/Pages/Account/ResetPassword.cshtml.cs @@ -67,17 +67,15 @@ namespace Volo.Abp.Account.Web.Pages.Account try { - using (CurrentTenant.Change(TenantId)) - { - await AccountAppService.ResetPasswordAsync( - new ResetPasswordDto - { - UserId = UserId, - ResetToken = ResetToken, - Password = Password - } - ); - } + await AccountAppService.ResetPasswordAsync( + new ResetPasswordDto + { + UserId = UserId, + ResetToken = ResetToken, + Password = Password, + TenantId = TenantId + } + ); } catch (AbpIdentityResultException e) {