diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2024-07-01 19:50:25 +0100 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2024-07-01 19:50:25 +0100 |
commit | c5141c77976cd17e5e457ac0d1fb6647636056bb (patch) | |
tree | a7541fcf4db51072435f86608cf0c897341ca74a /src/lib/config.ts | |
parent | 935bb9dec49f2a18bb839915dbc1ff695f8767c5 (diff) |
Allow 'none' as an email option
Diffstat (limited to 'src/lib/config.ts')
-rw-r--r-- | src/lib/config.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/config.ts b/src/lib/config.ts index b4086d8..e8b774a 100644 --- a/src/lib/config.ts +++ b/src/lib/config.ts @@ -21,7 +21,7 @@ export interface GathioConfig { email_logo_url: string; show_kofi: boolean; show_public_event_list: boolean; - mail_service: "nodemailer" | "sendgrid"; + mail_service: "nodemailer" | "sendgrid" | "none"; creator_email_addresses: string[]; }; database: { @@ -62,7 +62,7 @@ const defaultConfig: GathioConfig = { email_logo_url: "", show_public_event_list: false, show_kofi: false, - mail_service: "nodemailer", + mail_service: "none", creator_email_addresses: [], }, database: { |