# HG changeset patch # User Boris Feld # Date 2017-06-30 01:45:34 # Node ID b0a567017647755c4b85d194d0665b67ca601680 # Parent 6742e18e41f0d93304f8ef476b4272e16f29cefa configitems: register the 'web.allow_read' config diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -591,6 +591,9 @@ coreconfigitem('web', 'address', coreconfigitem('web', 'allow_archive', default=list, ) +coreconfigitem('web', 'allow_read', + default=list, +) coreconfigitem('worker', 'backgroundclose', default=dynamicdefault, )