Account for current path for tag counts

Fix tag unit tests
This commit is contained in:
Cameron Cordes
2023-12-02 13:38:24 -05:00
parent da21f064b9
commit 2b9a741642
2 changed files with 20 additions and 11 deletions

View File

@@ -166,6 +166,11 @@ pub struct AddTagRequest {
pub tag_name: String,
}
#[derive(Deserialize)]
pub struct GetTagsRequest {
pub path: Option<String>,
}
#[cfg(test)]
mod tests {
use super::Claims;