mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
added ui structure for rootdirs.
This commit is contained in:
parent
ae61150b84
commit
157b559ed2
12 changed files with 133 additions and 8 deletions
32
NzbDrone.Api/QualityProfiles/RootFolderModule.cs
Normal file
32
NzbDrone.Api/QualityProfiles/RootFolderModule.cs
Normal file
|
@ -0,0 +1,32 @@
|
|||
using Nancy;
|
||||
using NzbDrone.Core.Providers;
|
||||
using NzbDrone.Api.QualityType;
|
||||
using NzbDrone.Core.Repository;
|
||||
|
||||
namespace NzbDrone.Api.QualityProfiles
|
||||
{
|
||||
public class RootFolderModule : NzbDroneApiModule
|
||||
{
|
||||
private readonly RootDirProvider _rootDirProvider;
|
||||
|
||||
public RootFolderModule(RootDirProvider rootDirProvider)
|
||||
: base("//rootfolders")
|
||||
{
|
||||
_rootDirProvider = rootDirProvider;
|
||||
|
||||
Get["/"] = x => GetRootFolders();
|
||||
Post["/"] = x => AddRootFolder();
|
||||
}
|
||||
|
||||
private Response AddRootFolder()
|
||||
{
|
||||
_rootDirProvider.Add(Request.Body.FromJson<RootDir>());
|
||||
return new Response { StatusCode = HttpStatusCode.Created };
|
||||
}
|
||||
|
||||
private Response GetRootFolders()
|
||||
{
|
||||
return _rootDirProvider.AllWithFreeSpace().AsResponse();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue