I tried to use this file you sent before https://gist.github.com/realLiangshiwei/7b206990452bf566c711c0a0472d043d it does not work but code behind works fine, is component named UserManagement?
protected override async ValueTask SetTableColumnsAsync()
{
await base.SetTableColumnsAsync();
UserManagementTableColumns.RemoveAll(x => x.Title.Contains("Phone") || x.Title.Contains("Token"));
}
but unable to hide it in create/edit modal
Hi again, I got a problem while creating new user Is there any way to allow me set default value EmailConfirmed = true when create User in UserManagement page? I found method CreateEntityAsync() but NewEntity does not have EmailConfirmed properties. Can we use IdentityUserManager to update it?
I solved this, I need to overwrite protected override async Task GetEntitiesAsync() instead
Can you give me an example if I want to custominze UserManagement page? What are components I should overwrite?
I want to customize Identity/Users page with some modification in both UI and Model. I am using Pro module and include these package. My question : to customize User management pages, what are package I have to added? what is razor pages I need to customize ? and How
I tried to add folder and add this razor page but it does not help
Regards
But comment this line does not work app.UseHttpsRedirection(); I also try to disable this one Configure<OpenIddictServerAspNetCoreOptions>(options => { options.DisableTransportSecurityRequirement = true; });
I tested with Postman, HTTPS request will respone 200 but HTTP request does not respone anything. What should I do to enable HTTP request?