diff options
author | Pilou <pierre-louis@libregerbil.fr> | 2022-03-28 14:54:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 13:54:59 +0100 |
commit | 893c8938fc81166f386ff203f2129497ceddbc32 (patch) | |
tree | a4b0d79b4c4871932d344fa9c29a0aaa77139951 /custom | |
parent | 6526733a58632086d51ce7211b3a4dc75dbbef90 (diff) | |
download | gitea-893c8938fc81166f386ff203f2129497ceddbc32.tar.gz gitea-893c8938fc81166f386ff203f2129497ceddbc32.zip |
New cron task: delete old system notices (#19219)
Add a new cron task which deletes the old system notices.
Diffstat (limited to 'custom')
-rw-r--r-- | custom/conf/app.example.ini | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index 1b59e90e4e..8c6643b9bc 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -2020,6 +2020,19 @@ PATH = ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Delete all old system notices from database +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;[cron.delete_old_system_notices] +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;ENABLED = false +;RUN_AT_START = false +;NO_SUCCESS_NOTICE = false +;SCHEDULE = @every 168h +;OLDER_THAN = 8760h + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Git Operation timeout in seconds ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;[git.timeout] |