# HG changeset patch # User Boris Feld # Date 1498787134 -7200 # Node ID b0a567017647755c4b85d194d0665b67ca601680 # Parent 6742e18e41f0d93304f8ef476b4272e16f29cefa configitems: register the 'web.allow_read' config diff -r 6742e18e41f0 -r b0a567017647 mercurial/configitems.py --- a/mercurial/configitems.py Fri Jun 30 03:45:33 2017 +0200 +++ b/mercurial/configitems.py Fri Jun 30 03:45:34 2017 +0200 @@ -591,6 +591,9 @@ coreconfigitem('web', 'allow_archive', default=list, ) +coreconfigitem('web', 'allow_read', + default=list, +) coreconfigitem('worker', 'backgroundclose', default=dynamicdefault, )