# HG changeset patch # User Boris Feld # Date 2017-10-11 02:15:08 # Node ID 3e6b36ba16aca737f5c2cca6f6b2f385a059ad5c # Parent db935a5ea36442485df9ca27babcfc46a9f29044 configitems: register the 'web.deny_push' config diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -733,6 +733,9 @@ coreconfigitem('web', 'cache', coreconfigitem('web', 'contact', default=None, ) +coreconfigitem('web', 'deny_push', + default=list, +) coreconfigitem('web', 'accesslog', default='-', )