mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
added /api/resource/{id} route to fancy
stopped scheduler from running during integration tests.
This commit is contained in:
@@ -1,18 +1,23 @@
|
||||
using Nancy;
|
||||
using Nancy.Routing;
|
||||
using NzbDrone.Common;
|
||||
using NzbDrone.Api.Extensions;
|
||||
using System.Linq;
|
||||
|
||||
namespace NzbDrone.Api.System
|
||||
{
|
||||
public class SystemModule : NzbDroneApiModule
|
||||
{
|
||||
private readonly IEnvironmentProvider _environmentProvider;
|
||||
private readonly IRouteCacheProvider _routeCacheProvider;
|
||||
|
||||
public SystemModule(IEnvironmentProvider environmentProvider)
|
||||
public SystemModule(IEnvironmentProvider environmentProvider, IRouteCacheProvider routeCacheProvider)
|
||||
: base("system")
|
||||
{
|
||||
_environmentProvider = environmentProvider;
|
||||
_routeCacheProvider = routeCacheProvider;
|
||||
Get["/status"] = x => GetStatus();
|
||||
Get["/routes"] = x => GetRoutes();
|
||||
}
|
||||
|
||||
private Response GetStatus()
|
||||
@@ -29,9 +34,15 @@ namespace NzbDrone.Api.System
|
||||
IsMono = EnvironmentProvider.IsMono,
|
||||
IsProduction = EnvironmentProvider.IsProduction,
|
||||
IsDebug = EnvironmentProvider.IsDebug,
|
||||
IsLinux = EnvironmentProvider.IsLinux
|
||||
IsLinux = EnvironmentProvider.IsLinux,
|
||||
}.AsResponse();
|
||||
|
||||
}
|
||||
|
||||
|
||||
private Response GetRoutes()
|
||||
{
|
||||
return _routeCacheProvider.GetCache().Values.AsResponse();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user