From 21da519c0cd6e243888ebe573e3496e4eda01f10 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Sun, 17 Jan 2021 21:48:38 +0100 Subject: Implement ghost comment mitigation (#14349) * Implement ghost comment mitigation Adds a config option USER_DELETE_WITH_COMMENTS_MAX_DAYS to the [service] section. See https://codeberg.org/Codeberg/Discussion/issues/24 for the underlying issue. * cleanup * use setting module correctly * add to docs Co-authored-by: Moritz Marquardt --- modules/setting/service.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules/setting/service.go') diff --git a/modules/setting/service.go b/modules/setting/service.go index 5e74641d27..86f46898ac 100644 --- a/modules/setting/service.go +++ b/modules/setting/service.go @@ -50,6 +50,7 @@ var Service struct { AutoWatchNewRepos bool AutoWatchOnChanges bool DefaultOrgMemberVisible bool + UserDeleteWithCommentsMaxDays int // OpenID settings EnableOpenIDSignIn bool @@ -102,6 +103,7 @@ func newService() { Service.DefaultOrgVisibility = sec.Key("DEFAULT_ORG_VISIBILITY").In("public", structs.ExtractKeysFromMapString(structs.VisibilityModes)) Service.DefaultOrgVisibilityMode = structs.VisibilityModes[Service.DefaultOrgVisibility] Service.DefaultOrgMemberVisible = sec.Key("DEFAULT_ORG_MEMBER_VISIBLE").MustBool() + Service.UserDeleteWithCommentsMaxDays = sec.Key("USER_DELETE_WITH_COMMENTS_MAX_DAYS").MustInt(0) sec = Cfg.Section("openid") Service.EnableOpenIDSignIn = sec.Key("ENABLE_OPENID_SIGNIN").MustBool(!InstallLock) -- cgit v1.2.3