integrations: allow PUT method for webhook integration.
This commit is contained in:
parent
03fcdf8f0b
commit
838d11c6cb
1 changed files with 2 additions and 2 deletions
|
|
@ -119,11 +119,11 @@ class WebhookSettingsSchema(colander.Schema):
|
|||
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
|
||||
),
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue