You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//TODO: since FubuMVC.Authentication hard codes the membership node to use MembershipRepository
//there is no way to extend it, had to do it this way instead
settings.Strategies.AddToEnd(new MembershipNode(typeof(OurMembershipRepository)));
settings.Strategies.OfType<MembershipNode>()
.Where(x => x.MembershipType == typeof(MembershipAuthentication))
.ToArray()
.Each(x => x.Remove());
The text was updated successfully, but these errors were encountered:
See this garbage from Portal:
The text was updated successfully, but these errors were encountered: