Maybe it's a problem with folder permissions, You can try to grant iis user permissions.
Hi,
You can update the ChangePassword
via override services. see: https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-Services
Hi,
The blogging module not have angular UI. It just supported with MVC UI now.
Added Base Module As A project using ABP SUITE : Account ,IdentitySErver and IdentityServer UI.
These modules are already pre install to startup template, can you explain in detail?
Hi,
It works for me.
[RemoteService(true, Name = "AbpIdentity")]
[Route("api/identity/organization-units", Order = 0)]
[ControllerName("OrganizationUnit")]
[ExposeServices(typeof(OrganizationUnitController))]
[Area("identity")]
public class MyOrganizationunitcontroller : OrganizationUnitController, IOrganizationUnitAppService
{
public MyOrganizationunitcontroller(IOrganizationUnitAppService organizationUnitAppService) : base(
organizationUnitAppService)
{
}
[HttpGet(Order = 1)]
public override Task<PagedResultDto<OrganizationUnitWithDetailsDto>> GetListAsync(
GetOrganizationUnitInput input)
{
return base.GetListAsync(input);
}
}
Swagger config:
context.Services.AddSwaggerGen(
options =>
{
options.SwaggerDoc("v1", new OpenApiInfo {Title = "qa API", Version = "v1"});
options.DocInclusionPredicate((docName, description) => true);
options.ResolveConflictingActions (apiDescriptions => apiDescriptions.First());
});
Hi,
I think you can use the IProfileAppService
service. it has ChangePasswordAsync
method.
I see that I have asked 3 questions on here. I have only asked 1. How are you counting?
I will check it out.
Hi,
Add the following code to your HttpApi.Host
project module class:
private static void ConfigureSwagger(ServiceConfigurationContext context)
{
context.Services.AddSwaggerGen(
options =>
{
options.SwaggerDoc("v1", new OpenApiInfo {Title = "qaangularng API", Version = "v1"});
options.DocInclusionPredicate((docName, description) => true);
options.CustomSchemaIds(type => type.ToString()); // add this line
});
}
It will fix in next version.
I will check it out
Does https://stackoverflow.com/questions/37213937/asp-net-mvc-core-replace-controllers-using-custom-class-library work for you?