diff --git a/rhodecode/integrations/types/webhook.py b/rhodecode/integrations/types/webhook.py --- a/rhodecode/integrations/types/webhook.py +++ b/rhodecode/integrations/types/webhook.py @@ -119,11 +119,11 @@ class WebhookSettingsSchema(colander.Sch colander.String(), title=_('Call Method'), description=_('Select if the Webhook call should be made ' - 'with POST or GET.'), + 'with POST, GET or PUT.'), default='post', missing='', widget=deform.widget.RadioChoiceWidget( - values=[('get', 'GET'), ('post', 'POST')], + values=[('get', 'GET'), ('post', 'POST'), ('put', 'PUT')], inline=True ), )