You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
47 lines
1.3 KiB
using System.Web.Mvc;
|
|
using System.Web.Routing;
|
|
using Ninject;
|
|
using Ninject.Web.Mvc;
|
|
using NzbDrone.Core;
|
|
|
|
|
|
namespace NzbDrone.Web
|
|
{
|
|
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
|
|
// visit http://go.microsoft.com/?LinkId=9394801
|
|
|
|
public class MvcApplication : NinjectHttpApplication
|
|
{
|
|
private StandardKernel _kernel;
|
|
|
|
public static void RegisterRoutes(RouteCollection routes)
|
|
{
|
|
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
|
|
routes.IgnoreRoute("{*robotstxt}", new { robotstxt = @"(.*/)?robots.txt(/.*)?" });
|
|
routes.IgnoreRoute("{*favicon}", new { favicon = @"(.*/)?favicon.ico(/.*)?" });
|
|
|
|
routes.MapRoute(
|
|
"Default", // Route name
|
|
"{controller}/{action}/{id}", // URL with parameters
|
|
new { controller = "Series", action = "Index", id = UrlParameter.Optional } // Parameter defaults
|
|
);
|
|
|
|
}
|
|
|
|
protected override void OnApplicationStarted()
|
|
{
|
|
AreaRegistration.RegisterAllAreas();
|
|
RegisterRoutes(RouteTable.Routes);
|
|
base.OnApplicationStarted();
|
|
}
|
|
|
|
protected override IKernel CreateKernel()
|
|
{
|
|
_kernel = new StandardKernel();
|
|
Main.BindKernel(_kernel);
|
|
return _kernel;
|
|
}
|
|
|
|
|
|
}
|
|
} |