Hi:
https://github.com/abpframework/abp/milestones
You can check our milestones
Hi,
It will be available in 7.4
Hi,
I couldn't reproduce the problem, could you share the full steps to reproduce? thanks.
Hi,
You can try this:
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IAccountAppService)]
public class MyAccountAppService : AccountAppService
{
public MyAccountAppService(IdentityUserManager userManager, IAccountEmailer accountEmailer, IAccountPhoneService phoneService, IIdentityRoleRepository roleRepository, IdentitySecurityLogManager identitySecurityLogManager, IBlobContainer<AccountProfilePictureContainer> accountProfilePictureContainer, ISettingManager settingManager, IOptions<IdentityOptions> identityOptions, IIdentitySecurityLogRepository securityLogRepository, IApplicationInfoAccessor applicationInfoAccessor) : base(userManager, accountEmailer, phoneService, roleRepository, identitySecurityLogManager, accountProfilePictureContainer, settingManager, identityOptions, securityLogRepository, applicationInfoAccessor)
{
}
public override async Task<IdentityUserDto> RegisterAsync(RegisterDto input)
{
await CheckSelfRegistrationAsync();
if (await UseCaptchaOnRegistration())
{
var reCaptchaValidator = await RecaptchaValidatorFactory.CreateAsync();
await reCaptchaValidator.ValidateAsync(input.CaptchaResponse);
}
await IdentityOptions.SetAsync();
var user = new IdentityUser(GuidGenerator.Create(), input.UserName, input.EmailAddress, CurrentTenant.Id);
input.MapExtraPropertiesTo(user);
(await UserManager.CreateAsync(user, input.Password)).CheckErrors();
(await UserManager.AddDefaultRolesAsync(user)).CheckErrors();
return ObjectMapper.Map<IdentityUser, IdentityUserDto>(user);
}
}
Hi,
I will check it
Hi,
Ok, He is not a member of the abp team, so I can't make him answer your question.
I think this is the document he mentioned: https://docs.abp.io/api-docs/abp/3.0/api/index.html
I also see this is version 3. Are there plans to release documentation for higher versions?
I'll ask the team about the latest version of the API documentation and let you know.
our trainer mentioned that there used to be a class and method documentation
May I ask the name of the trainer?I will ask him to answer your question.
Hi,
Are you talking about this? https://docs.abp.io/api-docs/abp/3.0/api/index.html