# HG changeset patch # User Boris Feld # Date 1507688108 -7200 # Node ID 3e6b36ba16aca737f5c2cca6f6b2f385a059ad5c # Parent db935a5ea36442485df9ca27babcfc46a9f29044 configitems: register the 'web.deny_push' config diff -r db935a5ea364 -r 3e6b36ba16ac mercurial/configitems.py --- a/mercurial/configitems.py Wed Oct 11 04:14:44 2017 +0200 +++ b/mercurial/configitems.py Wed Oct 11 04:15:08 2017 +0200 @@ -733,6 +733,9 @@ coreconfigitem('web', 'contact', default=None, ) +coreconfigitem('web', 'deny_push', + default=list, +) coreconfigitem('web', 'accesslog', default='-', )