feat: Prowlarr integration (#965)

Co-authored-by: Manuel <30572287+manuel-rw@users.noreply.github.com>
This commit is contained in:
Yossi Hillali
2024-09-01 16:40:22 +03:00
committed by GitHub
parent acb4cb9c82
commit 6ff36405ba
34 changed files with 346 additions and 212 deletions

View File

@@ -0,0 +1,12 @@
export interface Indexer {
id: number;
name: string;
url: string;
/**
* Enabled: when the user enable / disable the indexer.
* Status: when there is an error with the indexer site.
* If one of the options are false the indexer is off.
*/
enabled: boolean;
status: boolean;
}