BuildFeed/Global.asax.cs
Thomas Hounsell 70130aace3 Lotsafixes, return of the search
That'll be #8 wrapped up, plus some more of #7
2015-05-30 15:14:09 +01:00

36 lines
991 B
C#

using System;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace BuildFeed
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
DateTimeModelBinder db = new DateTimeModelBinder();
ModelBinders.Binders.Add(typeof(DateTime), db);
ModelBinders.Binders.Add(typeof(DateTime?), db);
}
public override string GetVaryByCustomString(HttpContext context, string custom)
{
switch(custom)
{
case "userName":
return context.User.Identity.Name.ToLower();
}
return "";
}
}
}