IdentityServer4.Admin icon indicating copy to clipboard operation
IdentityServer4.Admin copied to clipboard

Extend UI for custom model properties

Open lexon0011 opened this issue 3 years ago • 0 comments

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!

lexon0011 avatar Aug 11 '22 13:08 lexon0011