mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Added more stubbed mothods and providers
This commit is contained in:
parent
8d47bcbe5e
commit
bca2e0c6b1
7 changed files with 75 additions and 3 deletions
|
@ -55,6 +55,12 @@ namespace NzbDrone.Core.Providers
|
|||
return _sonioRepo.Single<Series>(s => s.TvdbId == tvdbId.ToString());
|
||||
}
|
||||
|
||||
public IList<Season> GetSeasons(long tvdbId)
|
||||
{
|
||||
return _sonioRepo.Find<Season>(c => c.SeriesId == tvdbId);
|
||||
}
|
||||
|
||||
|
||||
public void SyncSeriesWithDisk()
|
||||
{
|
||||
foreach (string seriesFolder in _diskProvider.GetDirectories(_config.SeriesRoot))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue