Browse Source

Fix invalid Identity service configuration in README.md

pull/371/head
Ryan Sandbach 9 years ago
committed by Kévin Chalet
parent
commit
ecf0327725
  1. 6
      README.md

6
README.md

@ -85,11 +85,11 @@ public void ConfigureServices(IServiceCollection services)
});
// Register the Identity services.
services.AddIdentity<ApplicationUser, IdentityRole>()
.AddEntityFrameworkCoreStores<ApplicationDbContext>()
services.AddIdentity<ApplicationUser, IdentityRole>()
.AddEntityFrameworkStores<ApplicationDbContext>()
.AddDefaultTokenProviders();
// Register the OpenIddict services.
// Register the OpenIddict services.
// Note: use the generic overload if you need
// to replace the default OpenIddict entities.
services.AddOpenIddict(options =>

Loading…
Cancel
Save