Add basic recursive tag searching support based on the search path

This commit is contained in:
Cameron Cordes
2024-03-07 17:56:50 -05:00
parent d58e34c18f
commit ef39359862
2 changed files with 16 additions and 2 deletions

View File

@@ -105,6 +105,7 @@ pub struct FilesRequest {
pub path: String,
pub tag_ids: Option<String>, // comma separated numbers
pub tag_filter_mode: Option<FilterMode>,
pub recursive: Option<bool>,
}
#[derive(Copy, Clone, Deserialize, PartialEq)]