mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Lots of workings to search processing, UI Categories
This commit is contained in:
@@ -17,7 +17,7 @@ namespace Prowlarr.Api.V1.Indexers
|
||||
public bool SupportsSearch { get; set; }
|
||||
public DownloadProtocol Protocol { get; set; }
|
||||
public IndexerPrivacy Privacy { get; set; }
|
||||
public IndexerCapabilities Capabilities { get; set; }
|
||||
public IndexerCapabilityResource Capabilities { get; set; }
|
||||
public int Priority { get; set; }
|
||||
public DateTime Added { get; set; }
|
||||
}
|
||||
@@ -59,7 +59,7 @@ namespace Prowlarr.Api.V1.Indexers
|
||||
resource.EnableInteractiveSearch = definition.EnableInteractiveSearch;
|
||||
resource.SupportsRss = definition.SupportsRss;
|
||||
resource.SupportsSearch = definition.SupportsSearch;
|
||||
resource.Capabilities = definition.Capabilities;
|
||||
resource.Capabilities = definition.Capabilities.ToResource();
|
||||
resource.Protocol = definition.Protocol;
|
||||
resource.Privacy = definition.Privacy;
|
||||
resource.Priority = definition.Priority;
|
||||
|
Reference in New Issue
Block a user