Added field_type to Radarr events to dynamically display fields at runtime. Also updated the keybinding for events in the systems tab to reuse the 'e' key.

This commit is contained in:
2023-08-08 10:50:07 -06:00
parent 72194fe668
commit 52f22312f3
10 changed files with 47 additions and 28 deletions
+2
View File
@@ -180,6 +180,8 @@ pub struct IndexerField {
pub name: Option<String>,
pub label: Option<String>,
pub value: Option<Value>,
#[serde(rename(deserialize = "type"))]
pub field_type: Option<String>,
pub advanced: bool,
pub select_options: Option<Vec<IndexerSelectOption>>,
}