mirror of
https://github.com/idanoo/autobrr
synced 2025-07-26 02:09:13 +00:00
feat(feed): Configurable request timeout (#456)
* feat(feed): Add field for setting request timeout * fix: missing type in interface * feat: add postgres migration and column to base schema
This commit is contained in:
parent
47eaeaa635
commit
72be86a34f
10 changed files with 42 additions and 14 deletions
2
web/src/types/Feed.d.ts
vendored
2
web/src/types/Feed.d.ts
vendored
|
@ -6,6 +6,7 @@ interface Feed {
|
|||
enabled: boolean;
|
||||
url: string;
|
||||
interval: number;
|
||||
timeout: number;
|
||||
api_key: string;
|
||||
created_at: Date;
|
||||
updated_at: Date;
|
||||
|
@ -20,6 +21,7 @@ interface FeedCreate {
|
|||
enabled: boolean;
|
||||
url: string;
|
||||
interval: number;
|
||||
timeout: number;
|
||||
api_key?: string;
|
||||
indexer_id: number;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue