Add tag support to Sonarr/Radarr requests
This commit is contained in:
@@ -9,6 +9,11 @@ type qualityProfile struct {
|
||||
Id int
|
||||
}
|
||||
|
||||
type tag struct {
|
||||
Id int `json:"id"`
|
||||
Label string `json:"label"`
|
||||
}
|
||||
|
||||
type exclusion struct {
|
||||
TmdbId int `json:"tmdbId"`
|
||||
MovieTitle string `json:"movieTitle"`
|
||||
@@ -31,6 +36,7 @@ type addRequest struct {
|
||||
Year int `json:"year"`
|
||||
QualityProfileId int `json:"qualityProfileId"`
|
||||
Images []string `json:"images"`
|
||||
Tags []int `json:"tags"`
|
||||
Monitored bool `json:"monitored"`
|
||||
RootFolderPath string `json:"rootFolderPath"`
|
||||
MinimumAvailability string `json:"minimumAvailability"`
|
||||
|
||||
Reference in New Issue
Block a user