mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
using System.Web.Mvc;
|
|
using System.Web.Routing;
|
|
using log4net;
|
|
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;
|
|
}
|
|
|
|
|
|
}
|
|
} |