fix(feeds): create with indexer id (#260)

This commit is contained in:
Ludvig Lundgren 2022-05-01 16:32:02 +02:00 committed by GitHub
parent b7d1f216c0
commit 4d419abb72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ type Feed struct {
Settings map[string]string `json:"settings"` Settings map[string]string `json:"settings"`
CreatedAt time.Time `json:"created_at"` CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"` UpdatedAt time.Time `json:"updated_at"`
IndexerID int `json:"-"` IndexerID int `json:"indexer_id,omitempty"`
Indexerr FeedIndexer `json:"-"` Indexerr FeedIndexer `json:"-"`
} }