mirror of
https://github.com/ansible/awx.git
synced 2026-07-13 01:14:31 -02:30
Add "Disable SSL Verification" checkbox to webhook notification
This commit will add a checkbox which will disable SSL verification on the generic webhook notification type. This is required when using self-signed certificates.
This commit is contained in:
@@ -399,6 +399,13 @@ export default ['i18n', function(i18n) {
|
||||
subForm: 'typeSubForm',
|
||||
ngDisabled: '!(notification_template.summary_fields.user_capabilities.edit || canAdd)'
|
||||
},
|
||||
webhook_no_verify_ssl: {
|
||||
label: i18n._('Disable SSL Verification'),
|
||||
type: 'checkbox',
|
||||
ngShow: "notification_type.value == 'webhook' ",
|
||||
subForm: 'typeSubForm',
|
||||
ngDisabled: '!(notification_template.summary_fields.user_capabilities.edit || canAdd)'
|
||||
},
|
||||
headers: {
|
||||
label: i18n._('HTTP Headers'),
|
||||
dataTitle: i18n._('HTTP Headers'),
|
||||
|
||||
Reference in New Issue
Block a user