Fix crendential type problem in webhook operations in client side
Remove dict type in Webhook Model since crendential value in response body is no longer in dict form. Change-Id: Ia441483dd20f38b28200ff814bb0963a8548a1f2 Closes-Bug: #1485830
This commit is contained in:
@@ -218,7 +218,7 @@ class Webhook(resource.Resource):
|
||||
action = resource.prop('action')
|
||||
created_time = resource.prop('created_time')
|
||||
deleted_time = resource.prop('deleted_time')
|
||||
credential = resource.prop('credential', type=dict)
|
||||
credential = resource.prop('credential')
|
||||
params = resource.prop('params', type=dict)
|
||||
url = resource.prop('url')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user