21 lines
585 B
C#
21 lines
585 B
C#
using System.Data.Entity;
|
|
using System.Web;
|
|
using InventoryTraker.Web.Core;
|
|
using InventoryTraker.Web.Data;
|
|
using Microsoft.AspNet.Identity;
|
|
using Microsoft.AspNet.Identity.EntityFramework;
|
|
using Microsoft.Owin.Security;
|
|
using StructureMap;
|
|
|
|
namespace InventoryTraker.Web.Identity
|
|
{
|
|
public class AspNetIdentityRegistry : Registry
|
|
{
|
|
public AspNetIdentityRegistry()
|
|
{
|
|
For<IUserStore<User>>().Use<UserStore<User>>();
|
|
For<DbContext>().Use<AppDbContext>();
|
|
For<IAuthenticationManager>().Use(ctx => ctx.GetInstance<HttpRequestBase>().GetOwinContext().Authentication);
|
|
}
|
|
}
|
|
} |