# HG changeset patch # User Boris Feld # Date 1507688041 -7200 # Node ID cc5445ced1775b236f6a0b97d30c1397bc0bab24 # Parent 56816cfc4951c57fe15f75d0d79f631c5b61dffc configitems: register the 'web.allow_push' config diff -r 56816cfc4951 -r cc5445ced177 mercurial/configitems.py --- a/mercurial/configitems.py Wed Oct 11 04:12:50 2017 +0200 +++ b/mercurial/configitems.py Wed Oct 11 04:14:01 2017 +0200 @@ -721,6 +721,9 @@ coreconfigitem('web', 'allowpull', default=True, ) +coreconfigitem('web', 'allow_push', + default=list, +) coreconfigitem('web', 'accesslog', default='-', )