Print table/col/val when row not found

This commit is contained in:
Gregory Schier
2025-07-02 08:14:52 -07:00
parent ff26cc1344
commit a6979cf37e
3 changed files with 42 additions and 25 deletions

View File

@@ -64,7 +64,7 @@ impl<'a> DbContext<'a> {
return self.resolve_auth_for_folder(&folder);
}
let workspace = self.get_workspace("invalid")?;
let workspace = self.get_workspace(&http_request.workspace_id)?;
Ok(self.resolve_auth_for_workspace(&workspace))
}