Skip to content

Commit

Permalink
remove unused directives, add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
chsakell committed Aug 20, 2019
1 parent 1d4f1d0 commit 0f9da79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 3 additions & 0 deletions AspNetCoreIdentity/Infrastructure/AppUserManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@

namespace AspNetCoreIdentity.Infrastructure
{
/// <summary>
/// Custom UserManager to override Authenticator Token generation behavior (encrypt/decrypt)
/// </summary>
public class AppUserManager : UserManager<IdentityUser>
{
private readonly IConfiguration _configuration;
Expand Down
1 change: 0 additions & 1 deletion AspNetCoreIdentity/Startup.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Threading.Tasks;
using AspNetCoreIdentity.Infrastructure;
using AspNetCoreIdentity.Models;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
Expand Down
2 changes: 0 additions & 2 deletions IdentityServer/Startup.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Reflection;
using IdentityServer.Data;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
Expand Down Expand Up @@ -27,7 +26,6 @@ public void ConfigureServices(IServiceCollection services)
{
bool useInMemoryStores = bool.Parse(Configuration["UseInMemoryStores"]);
var connectionString = Configuration.GetConnectionString("IdentityServerConnection");
var migrationsAssembly = typeof(Startup).GetTypeInfo().Assembly.GetName().Name;

services.AddDbContext<ApplicationDbContext>(options =>
{
Expand Down

0 comments on commit 0f9da79

Please sign in to comment.