Change API Version from V3 to V1

This commit is contained in:
Qstick
2017-10-30 21:28:29 -04:00
parent db10057f2c
commit aae9f3cfc3
155 changed files with 248 additions and 248 deletions
@@ -0,0 +1,29 @@
using System.Collections.Generic;
using Nancy;
using NzbDrone.Core.Music;
using Lidarr.Http;
using Lidarr.Http.Extensions;
namespace Lidarr.Api.V1.Artist
{
public class ArtistImportModule : LidarrRestModule<ArtistResource>
{
private readonly IAddArtistService _addArtistService;
public ArtistImportModule(IAddArtistService addArtistService)
: base("/artist/import")
{
_addArtistService = addArtistService;
Post["/"] = x => Import();
}
private Response Import()
{
var resource = Request.Body.FromJson<List<ArtistResource>>();
var newArtist = resource.ToModel();
return _addArtistService.AddArtists(newArtist).ToResource().AsResponse();
}
}
}