diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2025-07-22 16:03:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-22 16:03:20 +0200 |
| commit | e7819d258a29eeec0e9255a961fee3b44735afab (patch) | |
| tree | e76946f1906d29e999485f3b2bd424fc7375037f /crates/atuin-server | |
| parent | Update indicatif to 0.18.0 (#2833) (diff) | |
| download | atuin-e7819d258a29eeec0e9255a961fee3b44735afab.zip | |
chore: update to rust 1.88 (#2815)
* chore: update to rust 1.88
* clippy + fmt
* update ci version
* update flake
Diffstat (limited to 'crates/atuin-server')
| -rw-r--r-- | crates/atuin-server/src/handlers/user.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/atuin-server/src/handlers/user.rs b/crates/atuin-server/src/handlers/user.rs index 60956e6e..e493e714 100644 --- a/crates/atuin-server/src/handlers/user.rs +++ b/crates/atuin-server/src/handlers/user.rs @@ -229,8 +229,7 @@ pub async fn send_verification<DB: Database>( .subject(settings.mail.verification.subject) .to(user.email) .body(postmark::api::Body::text(format!( - "Please run the following command to finalize your Atuin account verification. It is valid for 15 minutes:\n\natuin account verify --token '{}'", - verification_token + "Please run the following command to finalize your Atuin account verification. It is valid for 15 minutes:\n\natuin account verify --token '{verification_token}'" ))) .build(); |
