update auto-organize

This commit is contained in:
Luke Pulverenti 2016-02-09 12:13:38 -05:00
parent d58b70c5f9
commit 2247cd8794

View file

@ -74,7 +74,7 @@ namespace MediaBrowser.Api.Library
public bool RememberCorrection { get; set; } public bool RememberCorrection { get; set; }
} }
[Route("/Library/FileOrganizationSmartMatch", "GET", Summary = "Gets smart match entries")] [Route("/Library/FileOrganizations/SmartMatches", "GET", Summary = "Gets smart match entries")]
public class GetSmartMatchInfos : IReturn<QueryResult<SmartMatchInfo>> public class GetSmartMatchInfos : IReturn<QueryResult<SmartMatchInfo>>
{ {
/// <summary> /// <summary>
@ -92,13 +92,13 @@ namespace MediaBrowser.Api.Library
public int? Limit { get; set; } public int? Limit { get; set; }
} }
[Route("/Library/FileOrganizationSmartMatch/{Id}/Delete", "POST", Summary = "Deletes a smart match entry")] [Route("/Library/FileOrganizations/SmartMatches", "DELETE", Summary = "Deletes a smart match entry")]
public class DeleteSmartMatchEntry public class DeleteSmartMatchEntry
{ {
[ApiMember(Name = "Id", Description = "Item ID", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")] [ApiMember(Name = "Name", Description = "Name", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "DELETE")]
public string Id { get; set; } public string Name { get; set; }
[ApiMember(Name = "MatchString", Description = "SmartMatch String", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "POST")] [ApiMember(Name = "MatchString", Description = "SmartMatch String", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "DELETE")]
public string MatchString { get; set; } public string MatchString { get; set; }
} }
@ -172,7 +172,7 @@ namespace MediaBrowser.Api.Library
public void Post(DeleteSmartMatchEntry request) public void Post(DeleteSmartMatchEntry request)
{ {
_iFileOrganizationService.DeleteSmartMatchEntry(request.Id, request.MatchString); _iFileOrganizationService.DeleteSmartMatchEntry(request.Name, request.MatchString);
} }
} }
} }