Show More
@@ -119,11 +119,11 b' class WebhookSettingsSchema(colander.Sch' | |||||
119 | colander.String(), |
|
119 | colander.String(), | |
120 | title=_('Call Method'), |
|
120 | title=_('Call Method'), | |
121 | description=_('Select if the Webhook call should be made ' |
|
121 | description=_('Select if the Webhook call should be made ' | |
122 |
'with POST |
|
122 | 'with POST, GET or PUT.'), | |
123 | default='post', |
|
123 | default='post', | |
124 | missing='', |
|
124 | missing='', | |
125 | widget=deform.widget.RadioChoiceWidget( |
|
125 | widget=deform.widget.RadioChoiceWidget( | |
126 | values=[('get', 'GET'), ('post', 'POST')], |
|
126 | values=[('get', 'GET'), ('post', 'POST'), ('put', 'PUT')], | |
127 | inline=True |
|
127 | inline=True | |
128 | ), |
|
128 | ), | |
129 | ) |
|
129 | ) |
General Comments 0
You need to be logged in to leave comments.
Login now