IdentityServer4.Admin
IdentityServer4.Admin copied to clipboard
Extend UI for custom model properties
I setup the Skoruba.IdentityServer4.Admin project for managing my idsrv4 data. Thank you so much for providing this useful project, it saves me a lot of time.
I could manage all standard data (clients, users, ...), but my role model extend custom properties, which could not edit on the UI:
public class ZuulRole : IdentityRole<Guid>
{
// Extend IdentityRole with custom properties ...
public bool IsActiveDirectoryRole { get; set; }
}
Is there a way, to extend the UI for editing this custom properties?
Thanks!