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-server-database/src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'crates/atuin-server-database/src/lib.rs') diff --git a/crates/atuin-server-database/src/lib.rs b/crates/atuin-server-database/src/lib.rs index a4ddf23c..6000a530 100644 --- a/crates/atuin-server-database/src/lib.rs +++ b/crates/atuin-server-database/src/lib.rs @@ -107,10 +107,6 @@ pub trait Database: Sized + Clone + Send + Sync + 'static { async fn get_user_session(&self, u: &User) -> DbResult; async fn add_user(&self, user: &NewUser) -> DbResult; - async fn user_verified(&self, id: i64) -> DbResult; - async fn verify_user(&self, id: i64) -> DbResult<()>; - async fn user_verification_token(&self, id: i64) -> DbResult; - async fn update_user_password(&self, u: &User) -> DbResult<()>; async fn count_history(&self, user: &User) -> DbResult; -- cgit v1.3.1