diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2024-02-25 17:56:25 +0000 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2024-02-25 17:56:25 +0000 |
commit | cd0f291eb1a608589fcc2c1875fa7099ed8e2c51 (patch) | |
tree | 05b1d8b1d63baed174883cc96807051e530969a2 /config/config.example.toml | |
parent | b17238eb2840553c69fc2dae168be557afbcee9c (diff) |
feat: optionally restrict event creation to specific emails
Diffstat (limited to 'config/config.example.toml')
-rw-r--r-- | config/config.example.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/config.example.toml b/config/config.example.toml index 8f5a09d..73e90d0 100644 --- a/config/config.example.toml +++ b/config/config.example.toml @@ -17,6 +17,11 @@ show_kofi = false # 'nodemailer' or 'sendgrid'. Configure settings for this mail # service below. mail_service = "nodemailer" +# An array of email addresses which are permitted to create events. If this is +# empty, anyone can create events. +# For example: +# creator_email_addresses = ["test@test.com", "admin@test.com"] +creator_email_addresses = [] [database] # Set up for a locally running MongoDB connection. Change this to |