Enhance ChineseNfoRegistry job method to support optional parameters for TMDB ID, season, and episode; update configuration for HTTP proxy and connection string
Some checks failed
Docker Build & Deploy / Build Docker Image (push) Failing after 4s
Docker Build & Deploy / Deploy to Production (push) Has been skipped

This commit is contained in:
孙诚
2025-04-16 18:26:31 +08:00
parent fae4754df4
commit bf4faca1a7
6 changed files with 817 additions and 72 deletions

View File

@@ -2,5 +2,11 @@ namespace Interface.Jobs;
public interface IChineseNfoRegistry
{
void Job(bool ignoreLocked, bool ignoreCompleted);
void Job(
string? tmdbId = null,
string? seasonNumber = null,
string? episodeNumber = null,
bool ignoreLocked = false,
bool ignoreCompleted = false
);
}