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