IdentityServer / IdentityServer3.Admin.EntityFramework

Apache License 2.0
12 stars 30 forks source link

Customizing Clients #18

Closed RayZick closed 8 years ago

RayZick commented 8 years ago

Is it possible to add columns to the Clients table to store additional data (similar to what you can do to the UserAccounts table in IdentityServer using generics)? If not, is that a change that you would see as good for the product?

Thanks

iBoonz commented 8 years ago

Hi,

There is a difference between customizing the user table, and the clients table.

The user can be extended with customized info, without having any effect on the behaviour of the authentication, extending the client table can have other effects. If you want to add custom info about your clients, I recommend to create a secured API with custom info per client, instead of changing the client table.