delet items removed from plex (#77)

* delete items removed from plex

* fix tests
This commit is contained in:
Jason Dove
2021-03-14 17:54:32 +00:00
committed by GitHub
parent 8b1f8dd36b
commit a01888792a
7 changed files with 60 additions and 7 deletions
@@ -77,5 +77,14 @@ namespace ErsatzTV.Core.Tests.Fakes
throw new NotSupportedException();
public Task<Unit> AddGenre(ShowMetadata metadata, Genre genre) => throw new NotSupportedException();
public Task<Unit> RemoveMissingPlexShows(PlexLibrary library, List<string> showKeys) =>
throw new NotSupportedException();
public Task<Unit> RemoveMissingPlexSeasons(string showKey, List<string> seasonKeys) =>
throw new NotSupportedException();
public Task<Unit> RemoveMissingPlexEpisodes(string seasonKey, List<string> episodeKeys) =>
throw new NotSupportedException();
}
}