diff options
author | 6543 <6543@obermui.de> | 2021-01-22 03:56:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-21 21:56:19 -0500 |
commit | a0e424da859a5bf52fe1f08c08a9dcbe3e9d92eb (patch) | |
tree | f2326a97f31b4816c5e0cba98bf60392898b3728 /custom | |
parent | 0e2e73410e1e222633c007969d384d392d0420a3 (diff) | |
download | gitea-a0e424da859a5bf52fe1f08c08a9dcbe3e9d92eb.tar.gz gitea-a0e424da859a5bf52fe1f08c08a9dcbe3e9d92eb.zip |
Enhance Ghost comment mitigation Settings (#14392)
* refactor models.DeleteComment and delete related reactions too
* use deleteComment for UserDeleteWithCommentsMaxDays in DeleteUser
* nits
* Use time.Duration as other time settings have
* docs
* Resolve Fixme & fix potential deadlock
* Disabled by Default
* Update Config Value Description
* switch args
* Update models/issue_comment.go
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'custom')
-rw-r--r-- | custom/conf/app.example.ini | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index 8921e3a5de..f2b65a0963 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -688,9 +688,8 @@ AUTO_WATCH_NEW_REPOS = true ; Default value for AutoWatchOnChanges ; Make the user watch a repository When they commit for the first time AUTO_WATCH_ON_CHANGES = false -; Default value for the minimum age a user has to exist before deletion to keep issue comments. -; If a user deletes his account before that amount of days, his comments will be deleted as well. -USER_DELETE_WITH_COMMENTS_MAX_DAYS = 0 +; Minimum amount of time a user must exist before comments are kept when the user is deleted. +USER_DELETE_WITH_COMMENTS_MAX_TIME = 0 [webhook] ; Hook task queue length, increase if webhook shooting starts hanging |