You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
Using IdentityServer4 2.2, I can still request tokens with a client with Enabled set to False, with Resource Owner Password grant type. I tried to restart the server instance to make sure it was not a cache issue. But still the Enabled flag in the client store is not checked.
I found that there is an extension method that is used on the IClientStore to get active clients, that is used internally. But it seems this is not working with the EF store.
Issue / Steps to reproduce the problem
Configure IdentityServer to use configuration store through EF
.AddConfigurationStore(options =>
{
options.ConfigureDbContext = builder => builder.UseNpgsql(configurationConnectionStrinng, sql => sql.MigrationsAssembly(migrationsAssembly));
})
The text was updated successfully, but these errors were encountered:
Using IdentityServer4 2.2, I can still request tokens with a client with Enabled set to False, with Resource Owner Password grant type. I tried to restart the server instance to make sure it was not a cache issue. But still the Enabled flag in the client store is not checked.
I found that there is an extension method that is used on the IClientStore to get active clients, that is used internally. But it seems this is not working with the EF store.
Issue / Steps to reproduce the problem
Configure IdentityServer to use configuration store through EF
.AddConfigurationStore(options =>
{
options.ConfigureDbContext = builder => builder.UseNpgsql(configurationConnectionStrinng, sql => sql.MigrationsAssembly(migrationsAssembly));
})
The text was updated successfully, but these errors were encountered: