Browse Source

Merge pull request #141 from colinin/3.3

Fixed bug:  Object NullReference in MyProfileService interface
pull/177/head
cKey 5 years ago
committed by GitHub
parent
commit
92e0a71e02
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/MyProfileAppService.cs

2
aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/MyProfileAppService.cs

@ -29,7 +29,7 @@ namespace LINGYUN.Abp.Identity
UserManager = userManager;
UserRepository = userRepository;
SecurityCodeSender = securityCodeSender;
SecurityTokenCache = SecurityTokenCache;
SecurityTokenCache = securityTokenCache;
}
public virtual async Task ChangeTwoFactorEnabledAsync(ChangeTwoFactorEnabledDto input)

Loading…
Cancel
Save