1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 17:55:10 +03:00

False is not false

This commit is contained in:
zicklam 2019-05-08 08:35:26 +02:00
parent 0fb3851a2b
commit 42f30e72b5

View File

@ -15,7 +15,7 @@ logger = logging.getLogger('awx.main.notifications.webhook_backend')
class WebhookBackend(AWXBaseEmailBackend):
init_parameters = {"url": {"label": "Target URL", "type": "string"},
"disable_ssl_verification": {"label": "Verify SSL", "type": "bool", "default": false},
"disable_ssl_verification": {"label": "Verify SSL", "type": "bool", "default": False},
"headers": {"label": "HTTP Headers", "type": "object"}}
recipient_parameter = "url"
sender_parameter = None