Reworked Models to use tmdb to enable integration with Radarr api. Also reworked test connection to use api to validate as I ran into CORS errors. I also set up an endpoint to call radarr to delete movies. Currently only got to retrieving movie info. Should be able to use the id retrieved to then delete the movie.

This commit is contained in:
2026-03-07 18:02:45 -07:00
parent 958c581280
commit 3f5074aa3b
7 changed files with 276 additions and 70 deletions

View File

@@ -10,5 +10,6 @@ namespace Jellyfin.Plugin.MediaCleaner.Models;
/// </summary>
public class SeriesInfo : MediaInfo
{
public Guid SeriesId { get; set; }
public IEnumerable<string> Seasons { get; set; } = [];
}