diff options
author | Paweł Bogusławski <pawel.boguslawski@ib.pl> | 2022-06-04 13:42:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-04 19:42:17 +0800 |
commit | 14d96ff7acacf8912b05f113b8ca35f67edebd1b (patch) | |
tree | 1f76e23e6c254f0cf9fd1a9964e05e5264ffa3ce /custom | |
parent | 867b34d5e9ab8694b2928deddfaa63ae9437d269 (diff) | |
download | gitea-14d96ff7acacf8912b05f113b8ca35f67edebd1b.tar.gz gitea-14d96ff7acacf8912b05f113b8ca35f67edebd1b.zip |
Disable unnecessary mirroring elements (#18527)
* Disable unnecessary mirroring elements
This mod fixes disabling unnecessary mirroring elements.
Related: https://github.com/go-gitea/gitea/pull/16957
Related: https://github.com/go-gitea/gitea/pull/13084
Author-Change-Id: IB#1105104
* Checkbox rendering disabled instead of hiding it
Fixes: 02b45051503d4330da9757ff084c9cc5e6e60d84
Related: https://github.com/go-gitea/gitea/pull/18527#pullrequestreview-878061913
Author-Change-Id: IB#1105104
* Update custom/conf/app.example.ini
Co-authored-by: silverwind <me@silverwind.io>
* Update docs/content/doc/advanced/config-cheat-sheet.en-us.md
Co-authored-by: silverwind <me@silverwind.io>
* Mirror filter removed only when whole mirroring feature is disabled
Fixes: 02b45051503d4330da9757ff084c9cc5e6e60d84
Related: https://github.com/go-gitea/gitea/pull/18527#discussion_r883268890
Author-Change-Id: IB#1105104
Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to 'custom')
-rw-r--r-- | custom/conf/app.example.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index 9a50564769..5814c0d69d 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -2091,7 +2091,7 @@ PATH = ;[mirror] ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; Enables the mirror functionality. Set to **false** to disable all mirrors. +;; Enables the mirror functionality. Set to **false** to disable all mirrors. Pre-existing mirrors remain valid but won't be updated; may be converted to regular repo. ;ENABLED = true ;; Disable the creation of **new** pull mirrors. Pre-existing mirrors remain valid. Will be ignored if `mirror.ENABLED` is `false`. ;DISABLE_NEW_PULL = false |