diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-07-02 11:14:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-02 11:14:37 +0100 |
| commit | 0def653484b2505e6b06a0f45aee215596e34819 (patch) | |
| tree | 70062a7fc48e6db73f8f8854ffa47b329c07280b /crates/atuin-server | |
| parent | perf: create idx cache table (#2140) (diff) | |
| download | atuin-0def653484b2505e6b06a0f45aee215596e34819.zip | |
perf: write to the idx cache (#2225)
Diffstat (limited to 'crates/atuin-server')
| -rw-r--r-- | crates/atuin-server/src/settings.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/atuin-server/src/settings.rs b/crates/atuin-server/src/settings.rs index 1246982a..dfe238d6 100644 --- a/crates/atuin-server/src/settings.rs +++ b/crates/atuin-server/src/settings.rs @@ -14,8 +14,10 @@ pub struct Mail { /// Configuration for the postmark api client /// This is what we use for Atuin Cloud, the forum, etc. + #[serde(default)] pub postmark: Postmark, + #[serde(default)] pub verification: MailVerification, } |
