Skip to content

Commit

Permalink
Fix example-webhooks-list.json hasSecret Type
Browse files Browse the repository at this point in the history
The example in the interface documentation does not match the actual return value type.
  • Loading branch information
gsakun authored and sonartech committed Dec 23, 2024
1 parent 535291b commit a2500e7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"key": "UUID-1",
"name": "my first webhook",
"url": "http://www.my-webhook-listener.com/sonarqube",
"hasSecret": "false"
"hasSecret": false
},
{
"key": "UUID-2",
"name": "my 2nd webhook",
"url": "https://www.my-other-webhook-listener.com/fancy-listner",
"hasSecret": "true"
"hasSecret": true
}
]
}

0 comments on commit a2500e7

Please sign in to comment.