From e2b421c88479857831e938acb311aef5127f38b4 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Tue, 27 Jan 2026 13:56:18 -0800 Subject: feat: remove user verification functionality (#3108) ## 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 --------- Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- crates/atuin-common/src/api.rs | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'crates/atuin-common/src/api.rs') diff --git a/crates/atuin-common/src/api.rs b/crates/atuin-common/src/api.rs index 973bdc8e..5887424f 100644 --- a/crates/atuin-common/src/api.rs +++ b/crates/atuin-common/src/api.rs @@ -31,22 +31,6 @@ pub struct RegisterResponse { #[derive(Debug, Serialize, Deserialize)] pub struct DeleteUserResponse {} -#[derive(Debug, Serialize, Deserialize)] -pub struct SendVerificationResponse { - pub email_sent: bool, - pub verified: bool, -} - -#[derive(Debug, Serialize, Deserialize)] -pub struct VerificationTokenRequest { - pub token: String, -} - -#[derive(Debug, Serialize, Deserialize)] -pub struct VerificationTokenResponse { - pub verified: bool, -} - #[derive(Debug, Serialize, Deserialize)] pub struct ChangePasswordRequest { pub current_password: String, -- cgit v1.3.1