diff options
author | Raphael <mail@raphaelkabo.com> | 2024-02-25 21:27:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 21:27:13 +0000 |
commit | 7ff0bebd9fbdf1c982d7cc42a7057d36a3e2486a (patch) | |
tree | 05b1d8b1d63baed174883cc96807051e530969a2 /config | |
parent | b17238eb2840553c69fc2dae168be557afbcee9c (diff) | |
parent | cd0f291eb1a608589fcc2c1875fa7099ed8e2c51 (diff) |
Merge pull request #133 from lowercasename/rk/restricted-event-creation
Optionally restrict event creation to specific email addresses
Diffstat (limited to 'config')
-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 |