aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-daemon/src/client.rs
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2026-04-11 05:26:52 +0100
committerGitHub <noreply@github.com>2026-04-11 05:26:52 +0100
commit4d81ec537f91ebed0d5498a36596a516dbf7d26b (patch)
tree01c9ed9f3e3e6ecf61461c99fd8fd6998c26a8c3 /crates/atuin-daemon/src/client.rs
parentfix: ensure daemon is running (#3384) (diff)
downloadatuin-4d81ec537f91ebed0d5498a36596a516dbf7d26b.zip
feat: track coding agent shell usage (#3388)
https://github.com/user-attachments/assets/7868c7a4-6a91-4c93-ac6a-e8665cf1f799 ## Checks - [ ] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [ ] I have checked that there are no existing pull requests for the same thing
Diffstat (limited to 'crates/atuin-daemon/src/client.rs')
-rw-r--r--crates/atuin-daemon/src/client.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/atuin-daemon/src/client.rs b/crates/atuin-daemon/src/client.rs
index 5f4ce20f..51334ee1 100644
--- a/crates/atuin-daemon/src/client.rs
+++ b/crates/atuin-daemon/src/client.rs
@@ -213,12 +213,14 @@ impl SearchClient {
query_id: u64,
filter_mode: FilterMode,
context: Option<Context>,
+ authors: Vec<String>,
) -> Result<tonic::Streaming<SearchResponse>> {
let request = SearchRequest {
query,
query_id,
filter_mode: RpcFilterMode::from(filter_mode).into(),
context: context.map(RpcSearchContext::from),
+ authors,
};
let request_stream = tokio_stream::once(request);
let response = span!(Level::TRACE, "daemon_client_search.request")