|
|
@ -45,6 +45,7 @@ namespace NzbDrone.Integration.Test
|
|
|
|
public ClientBase<HistoryResource> History;
|
|
|
|
public ClientBase<HistoryResource> History;
|
|
|
|
public ClientBase<HostConfigResource> HostConfig;
|
|
|
|
public ClientBase<HostConfigResource> HostConfig;
|
|
|
|
public IndexerClient Indexers;
|
|
|
|
public IndexerClient Indexers;
|
|
|
|
|
|
|
|
public LogsClient Logs;
|
|
|
|
public ClientBase<NamingConfigResource> NamingConfig;
|
|
|
|
public ClientBase<NamingConfigResource> NamingConfig;
|
|
|
|
public NotificationClient Notifications;
|
|
|
|
public NotificationClient Notifications;
|
|
|
|
public ClientBase<ProfileResource> Profiles;
|
|
|
|
public ClientBase<ProfileResource> Profiles;
|
|
|
@ -106,6 +107,7 @@ namespace NzbDrone.Integration.Test
|
|
|
|
History = new ClientBase<HistoryResource>(RestClient, ApiKey);
|
|
|
|
History = new ClientBase<HistoryResource>(RestClient, ApiKey);
|
|
|
|
HostConfig = new ClientBase<HostConfigResource>(RestClient, ApiKey, "config/host");
|
|
|
|
HostConfig = new ClientBase<HostConfigResource>(RestClient, ApiKey, "config/host");
|
|
|
|
Indexers = new IndexerClient(RestClient, ApiKey);
|
|
|
|
Indexers = new IndexerClient(RestClient, ApiKey);
|
|
|
|
|
|
|
|
Logs = new LogsClient(RestClient, ApiKey);
|
|
|
|
NamingConfig = new ClientBase<NamingConfigResource>(RestClient, ApiKey, "config/naming");
|
|
|
|
NamingConfig = new ClientBase<NamingConfigResource>(RestClient, ApiKey, "config/naming");
|
|
|
|
Notifications = new NotificationClient(RestClient, ApiKey);
|
|
|
|
Notifications = new NotificationClient(RestClient, ApiKey);
|
|
|
|
Profiles = new ClientBase<ProfileResource>(RestClient, ApiKey);
|
|
|
|
Profiles = new ClientBase<ProfileResource>(RestClient, ApiKey);
|
|
|
|