diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-12 01:24:02 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-12 01:24:02 -0400 |
| commit | d0d225e0d1b4179259bab7fc13df53276003d75a (patch) | |
| tree | 933c6168d7f131e24a634c2d374ab4d4c3f2633e | |
| parent | 7ad5a51828c32d08aeae7066c36b751d7e7cba97 (diff) | |
rework dynamic quality options
| -rw-r--r-- | MediaBrowser.Api/Sync/SyncService.cs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/MediaBrowser.Api/Sync/SyncService.cs b/MediaBrowser.Api/Sync/SyncService.cs index 23590940d..7c81f24c4 100644 --- a/MediaBrowser.Api/Sync/SyncService.cs +++ b/MediaBrowser.Api/Sync/SyncService.cs @@ -27,13 +27,6 @@ namespace MediaBrowser.Api.Sync public string Id { get; set; } } - [Route("/Sync/QualityOptions", "GET", Summary = "Gets quality options for a sync target.")] - public class GetQualityOptions : IReturn<List<SyncQualityOption>> - { - [ApiMember(Name = "TargetId", Description = "TargetId", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")] - public string TargetId { get; set; } - } - [Route("/Sync/Jobs/{Id}", "POST", Summary = "Updates a sync job.")] public class UpdateSyncJob : SyncJob, IReturnVoid { @@ -229,13 +222,6 @@ namespace MediaBrowser.Api.Sync return ToStaticFileResult(jobItem.OutputPath); } - public object Get(GetQualityOptions request) - { - return ToOptimizedResult(_syncManager - .GetQualityOptions(request.TargetId) - .ToList()); - } - public object Get(GetSyncDialogOptions request) { var result = new SyncDialogOptions(); |
