# HG changeset patch # User Boris Feld # Date 2017-10-11 02:14:01 # Node ID cc5445ced1775b236f6a0b97d30c1397bc0bab24 # Parent 56816cfc4951c57fe15f75d0d79f631c5b61dffc configitems: register the 'web.allow_push' config diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -721,6 +721,9 @@ coreconfigitem('web', 'allowgz', coreconfigitem('web', 'allowpull', default=True, ) +coreconfigitem('web', 'allow_push', + default=list, +) coreconfigitem('web', 'accesslog', default='-', )