public static IdentityServerServiceFactory Configure(string connString) { var factory = new IdentityServerServiceFactory(); //var scopeStore = new InMemoryScopeStore(Config.Scopes.Get()); //factory.ScopeStore = new Registration<IScopeStore>(scopeStore); var scopeStore = new clientMgr.Stores.ScopeStore(connString); factory.ScopeStore = new Registration<IScopeStore>(scopeStore); //var clientStore = new InMemoryClientStore(Config.Clients.Get()); //factory.ClientStore = new Registration<IClientStore>(clientStore); var clientStore = new clientMgr.Stores.ClientStore(connString); factory.ClientStore = new Registration<IClientStore>(clientStore); return factory; }
public static IdentityServerServiceFactory Configure(string connString) { var factory = new IdentityServerServiceFactory(); //var scopeStore = new InMemoryScopeStore(Config.Scopes.Get()); //factory.ScopeStore = new Registration<IScopeStore>(scopeStore); var scopeStore = new clientMgr.Stores.ScopeStore(connString); factory.ScopeStore = new Registration <IScopeStore>(scopeStore); //var clientStore = new InMemoryClientStore(Config.Clients.Get()); //factory.ClientStore = new Registration<IClientStore>(clientStore); var clientStore = new clientMgr.Stores.ClientStore(connString); factory.ClientStore = new Registration <IClientStore>(clientStore); return(factory); }
public static void ConfigureClientService(this IdentityServerServiceFactory factory, string connString) { var clientStore = new clientMgr.Stores.ClientStore(connString); factory.ClientStore = new Registration<IClientStore>(clientStore); }
public static void ConfigureClientService(this IdentityServerServiceFactory factory, string connString) { var clientStore = new clientMgr.Stores.ClientStore(connString); factory.ClientStore = new Registration <IClientStore>(clientStore); }