diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2024-03-02 02:21:01 +0100 |
---|---|---|
committer | Earl Warren <contact@earl-warren.org> | 2024-03-06 05:10:45 +0100 |
commit | ee6ff937c0782b9cdc7ae1bc62b7eda83982d40f (patch) | |
tree | 6719a5a963d26c647559c1ba1fccaa327a37f5c9 /custom/conf/app.example.ini | |
parent | Fix incorrect diff expander for deletion of last lines in a file (#29501) (diff) | |
download | forgejo-ee6ff937c0782b9cdc7ae1bc62b7eda83982d40f.tar.xz forgejo-ee6ff937c0782b9cdc7ae1bc62b7eda83982d40f.zip |
Allow options to disable user gpg keys configuration from the interface on app.ini (#29486)
Follow #29447
Fix #29454
Extract from #20549
(cherry picked from commit 9de5e39e25009bacc5ca201ed97e9cbb623e56e9)
Conflicts:
custom/conf/app.example.ini
docs/content/administration/config-cheat-sheet.en-us.md
docs/content/administration/config-cheat-sheet.zh-cn.md
trivial context conflict
Diffstat (limited to 'custom/conf/app.example.ini')
-rw-r--r-- | custom/conf/app.example.ini | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index d0da2a41e6..4d077643f5 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -1496,10 +1496,11 @@ LEVEL = Info ;; ;; Default configuration for email notifications for users (user configurable). Options: enabled, onmention, disabled ;DEFAULT_EMAIL_NOTIFICATIONS = enabled -;; Send an email to all admins when a new user signs up to inform the admins about this act. Options: true, false +;; Disabled features for users, could be "deletion","manage_gpg_keys" more features can be disabled in future ;SEND_NOTIFICATION_EMAIL_ON_NEW_USER = false ;; Disabled features for users, could be "deletion", more features can be disabled in future ;; - deletion: a user cannot delete their own account +;; - manage_gpg_keys: a user cannot configure gpg keys ;USER_DISABLED_FEATURES = ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |