Hi , thanks that helped.
I'm facing now another issue , from blazor.web.js.
Error: System.InvalidOperationException: The following routes are ambiguous: 'identity/users' in 'X.Blazor.Components.Pages.Identity.CustomUserManagement' 'identity/users' in 'Volo.Abp.Identity.Pro.Blazor.Pages.Identity.UserManagement'
in my BlazorModule i have such configuration which registers already all AdditionalAssemblies:
`app.UseConfiguredEndpoints(builder => {
var additionalAssemblies = builder.ServiceProvider.GetRequiredService<IOptions>()
.Value.AdditionalAssemblies.ToArray();
builder.MapRazorComponents()
.AddInteractiveServerRenderMode()
.AddAdditionalAssemblies(additionalAssemblies); });`
anyway I'm getting this ambigous error. Maybe there is some problem that the route is the same ? ( i want to leave it unchagned )
Hi ,
the code is exactly the same as in Identity.Account.Pro. I have only changed the name for my CustomUserManagement component. This component contains a route for : @page "/identity/users"
and it is placed in Blazor.csproj in the path Components/Pages/Identity
Hi , thanks very much that helped :)
One more question regarding UserManagement customization.
Is there a possibility to add another option for particular user action context menu ?
I want to add an option for admin , to reset Authenticator for specified user. It can work similar like in example - Set Password feature
I'm aware that I can user Account App Service but is there a possibility to overwrite this method :
and reset the authenticator for a particular user for which the context action is performed ?

