Hi ,
Try add AbpAccountPublicWebIdentityServerModule
module to your .Web
project module dependencies.
Hi,
aspnet-core/test
folder. It just a simple application.There are some document:
Authorization OAuth2.0 IdentityServer4 abp commercial IdentityServer4
Hi,
You can use setting system to store the cards layout settings and change cards layout in js function.
Hi,
Hi,
There is no such example, but abp does not restrict you from using multiple solutions. You can change the solution architecture according to your needs.
I think you can simply delete the other solution files(.sln) in the microservice example.
Hi,
You need to override UI interface. See https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-User-Interface
Add to app.UseSwagger();
before
Hi,
You can add a middleware to do it: like this:
if (!env.IsDevelopment())
{
app.Use(async (httpContext, next) =>
{
if (httpContext.Request.Path.Value.ToLower().Contains("swagger"))
{
var user = httpContext.RequestServices.GetService<ICurrentUser>();
if (user.IsAuthenticated && user.IsInRole("Admin"))
{
httpContext.Response.StatusCode = 404;
return;
}
}
await next.Invoke();
});
}
Hi,
You need to enable multi-tenancy and install the saas module.
Hi,
You can refer the audit-loggin module.