Skip to content

Commit

Permalink
Merge pull request #264 from aspnet/release
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
Suhas Joshi committed Oct 21, 2014
2 parents 390bf8f + 371f2f6 commit 5b69fb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/MusicStore/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void ConfigureServices(IServiceCollection services)
}

// Add Identity services to the services container
services.AddDefaultIdentity<MusicStoreContext, ApplicationUser, IdentityRole>(Configuration);
services.AddDefaultIdentity<MusicStoreContext, ApplicationUser, IdentityRole>(Configuration.GetSubKey("Identity"));

services.ConfigureFacebookAuthentication(options =>
{
Expand Down
2 changes: 1 addition & 1 deletion src/MusicStore/StartupNtlmAuthentication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void Configure(IApplicationBuilder app)
});

// Add Identity services to the services container
services.AddDefaultIdentity<MusicStoreContext, ApplicationUser, IdentityRole>(configuration);
services.AddDefaultIdentity<MusicStoreContext, ApplicationUser, IdentityRole>(configuration.GetSubKey("Identity"));

// Add MVC services to the services container
services.AddMvc();
Expand Down

0 comments on commit 5b69fb5

Please sign in to comment.