From ca263834e93814105ca9ea77ab213cff0bc95faa Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Wed, 17 May 2023 21:28:37 +0100 Subject: Restructure account commands to account subcommand (#984) * Stop running triggers on history delete * Move to account management dir * Alter trigger function to only run for inserts * wip * Add atuin account subcommands, and re-org delete * Clarify docs * Delete silly dupe migration * Um where did this come from * Oops, insert only plz --- atuin-client/src/api_client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'atuin-client') diff --git a/atuin-client/src/api_client.rs b/atuin-client/src/api_client.rs index 2abb8159..5ea84b9d 100644 --- a/atuin-client/src/api_client.rs +++ b/atuin-client/src/api_client.rs @@ -219,7 +219,7 @@ impl<'a> Client<'a> { } pub async fn delete(&self) -> Result<()> { - let url = format!("{}/register", self.sync_addr); + let url = format!("{}/account", self.sync_addr); let url = Url::parse(url.as_str())?; let resp = self.client.delete(url).send().await?; -- cgit v1.3.1