parent
29011cac5e
commit
0aa8ac5d39
@ -1,12 +0,0 @@
|
||||
using Radarr.Http;
|
||||
|
||||
namespace Radarr.Api.V2
|
||||
{
|
||||
public abstract class RadarrV2FeedModule : RadarrModule
|
||||
{
|
||||
protected RadarrV2FeedModule(string resource)
|
||||
: base("/feed/v2/" + resource.Trim('/'))
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
using Radarr.Http;
|
||||
|
||||
namespace Radarr.Api.V2
|
||||
{
|
||||
public abstract class RadarrV2Module : RadarrModule
|
||||
{
|
||||
protected RadarrV2Module(string resource)
|
||||
: base("/api/v2/" + resource.Trim('/'))
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
using Radarr.Http.REST;
|
||||
using NzbDrone.Core.Configuration;
|
||||
|
||||
namespace Radarr.Api.V2.Config
|
||||
namespace Radarr.Api.V3.Config
|
||||
{
|
||||
public class DownloadClientConfigResource : RestResource
|
||||
{
|
@ -1,7 +1,7 @@
|
||||
using Radarr.Http.REST;
|
||||
using NzbDrone.Core.Organizer;
|
||||
|
||||
namespace Radarr.Api.V2.Config
|
||||
namespace Radarr.Api.V3.Config
|
||||
{
|
||||
public class NamingConfigResource : RestResource
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using NzbDrone.Core.Organizer;
|
||||
|
||||
namespace Radarr.Api.V2.Config
|
||||
namespace Radarr.Api.V3.Config
|
||||
{
|
||||
public class NamingExampleResource
|
||||
{
|
@ -1,7 +1,7 @@
|
||||
using Radarr.Http.REST;
|
||||
using NzbDrone.Core.Configuration;
|
||||
|
||||
namespace Radarr.Api.V2.Config
|
||||
namespace Radarr.Api.V3.Config
|
||||
{
|
||||
public class NetImportConfigResource : RestResource
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using NzbDrone.Core.Configuration;
|
||||
|
||||
namespace Radarr.Api.V2.Config
|
||||
namespace Radarr.Api.V3.Config
|
||||
{
|
||||
public class UiConfigModule : RadarrConfigModule<UiConfigResource>
|
||||
{
|
@ -1,7 +1,7 @@
|
||||
using Radarr.Http.REST;
|
||||
using NzbDrone.Core.Configuration;
|
||||
|
||||
namespace Radarr.Api.V2.Config
|
||||
namespace Radarr.Api.V3.Config
|
||||
{
|
||||
public class UiConfigResource : RestResource
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using Radarr.Http.REST;
|
||||
|
||||
namespace Radarr.Api.V2.DiskSpace
|
||||
namespace Radarr.Api.V3.DiskSpace
|
||||
{
|
||||
public class DiskSpaceResource : RestResource
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using NzbDrone.Core.Download;
|
||||
|
||||
namespace Radarr.Api.V2.DownloadClient
|
||||
namespace Radarr.Api.V3.DownloadClient
|
||||
{
|
||||
public class DownloadClientModule : ProviderModuleBase<DownloadClientResource, IDownloadClient, DownloadClientDefinition>
|
||||
{
|
@ -1,7 +1,7 @@
|
||||
using NzbDrone.Core.Download;
|
||||
using NzbDrone.Core.Indexers;
|
||||
|
||||
namespace Radarr.Api.V2.DownloadClient
|
||||
namespace Radarr.Api.V3.DownloadClient
|
||||
{
|
||||
public class DownloadClientResource : ProviderResource
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using NzbDrone.Core.Indexers;
|
||||
|
||||
namespace Radarr.Api.V2.Indexers
|
||||
namespace Radarr.Api.V3.Indexers
|
||||
{
|
||||
public class IndexerModule : ProviderModuleBase<IndexerResource, IIndexer, IndexerDefinition>
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using NzbDrone.Core.Indexers;
|
||||
|
||||
namespace Radarr.Api.V2.Indexers
|
||||
namespace Radarr.Api.V3.Indexers
|
||||
{
|
||||
public class IndexerResource : ProviderResource
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using NzbDrone.Core.Extras.Metadata;
|
||||
|
||||
namespace Radarr.Api.V2.Metadata
|
||||
namespace Radarr.Api.V3.Metadata
|
||||
{
|
||||
public class MetadataModule : ProviderModuleBase<MetadataResource, IMetadata, MetadataDefinition>
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using NzbDrone.Core.Extras.Metadata;
|
||||
|
||||
namespace Radarr.Api.V2.Metadata
|
||||
namespace Radarr.Api.V3.Metadata
|
||||
{
|
||||
public class MetadataResource : ProviderResource
|
||||
{
|
@ -1,7 +1,7 @@
|
||||
using NzbDrone.Core.Movies;
|
||||
using NzbDrone.Core.NetImport;
|
||||
|
||||
namespace Radarr.Api.V2.NetImport
|
||||
namespace Radarr.Api.V3.NetImport
|
||||
{
|
||||
public class NetImportResource : ProviderResource
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using NzbDrone.Core.Notifications;
|
||||
|
||||
namespace Radarr.Api.V2.Notifications
|
||||
namespace Radarr.Api.V3.Notifications
|
||||
{
|
||||
public class NotificationModule : ProviderModuleBase<NotificationResource, INotification, NotificationDefinition>
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using NzbDrone.Core.Notifications;
|
||||
|
||||
namespace Radarr.Api.V2.Notifications
|
||||
namespace Radarr.Api.V3.Notifications
|
||||
{
|
||||
public class NotificationResource : ProviderResource
|
||||
{
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue