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:
paperclip-go-brr 2022-10-04 17:33:35 +02:00 committed by GitHub
parent 47eaeaa635
commit 72be86a34f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 42 additions and 14 deletions

View file

@ -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;
}