diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-08-24 04:01:13 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-08-24 04:51:24 -0400 |
| commit | ee9812bd35409abe9532b1d508e04c1dae63c941 (patch) | |
| tree | 9809bb7a7a840092623bb61bf63a5098acc1c7d7 /src/setup/app.rs | |
| parent | e1a8827a587949f3ac0c7a299e2745820ab368e1 (diff) | |
Remove the now-unused return value from the final stage of user creation.
Diffstat (limited to 'src/setup/app.rs')
| -rw-r--r-- | src/setup/app.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/setup/app.rs b/src/setup/app.rs index 123cff9..1856519 100644 --- a/src/setup/app.rs +++ b/src/setup/app.rs @@ -39,7 +39,7 @@ impl<'a> Setup<'a> { let secret = tx.tokens().issue(stored.user(), created_at).await?; tx.commit().await?; - let _ = stored.publish(self.events); + stored.publish(self.events); Ok(secret) } |
