1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Api/AppHost.cs

36 lines
1.0 KiB
C#
Raw Normal View History

2012-11-02 10:35:49 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Web;
using Funq;
using Ninject;
using NzbDrone.Api.QualityProfiles;
using ServiceStack.ContainerAdapter.Ninject;
2012-11-02 10:35:49 +03:00
using ServiceStack.WebHost.Endpoints;
namespace NzbDrone.Api
2012-11-02 10:35:49 +03:00
{
public class AppHost : AppHostBase
{
private IKernel _kernel;
public AppHost(IKernel kernel) //Tell ServiceStack the name and where to find your web services
: base("NzbDrone API", typeof(QualityProfileService).Assembly)
{
_kernel = kernel;
}
2012-11-02 10:35:49 +03:00
public override void Configure(Container container)
{
container.Adapter = new NinjectContainerAdapter(_kernel);
2012-11-02 10:35:49 +03:00
SetConfig(new EndpointHostConfig { ServiceStackHandlerFactoryPath = "api" });
Routes
2012-11-04 04:39:29 +03:00
.Add<QualityProfileModel>("/qualityprofiles")
.Add<QualityProfileModel>("/qualityprofiles/{Id}");
Bootstrapper.Initialize();
2012-11-02 10:35:49 +03:00
}
}
}