Skip to content
This repository has been archived by the owner on Feb 15, 2018. It is now read-only.

Commit

Permalink
take out redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Apr 19, 2015
1 parent d20338a commit a7212e4
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions source/Host/Startup.cs
Expand Up @@ -59,13 +59,6 @@ public void Configuration(IAppBuilder app)
Factory = factory,
});
});

// used to redirect to the main admin page visiting the root of the host
app.Run(ctx =>
{
ctx.Response.Redirect("/idm/");
return Task.FromResult(0);
});
}
}

Expand Down Expand Up @@ -120,13 +113,6 @@ public void Configuration(IAppBuilder app)
{
IdSvrConfig.Configure(ids);
});

// used to redirect to the main admin page visiting the root of the host
app.Run(ctx =>
{
ctx.Response.Redirect("/idm/");
return Task.FromResult(0);
});
}
}

Expand Down

0 comments on commit a7212e4

Please sign in to comment.