mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 15:37:55 +02:00

BackLog Provider created. QueueIfWanted moved to new class (RssItemProcessingProvider) to cutdown on repeating code (between RssSyncProvider and BacklogProvider) Style.css now sets width for rootDirectories class (when adding a new show).
18 lines
489 B
C#
18 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Core.Model;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IRssItemProcessingProvider
|
|
{
|
|
//This interface will contain methods to process individual RSS Feed Items (Queue if wanted)
|
|
|
|
void QueueIfWanted(NzbInfoModel nzb, Indexer indexer);
|
|
string GetTitleFix(List<EpisodeParseResult> episodes, int seriesId);
|
|
}
|
|
}
|