aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorGuillaume Jambet <guillaume.jambet@sonarsource.com>2018-02-13 15:42:38 +0100
committerGuillaume Jambet <guillaume.jambet@gmail.com>2018-03-01 15:21:05 +0100
commit8edd835fae1987fcd61b045a6c79b6e8ed8cf197 (patch)
tree1c5bd01d7029f07d0a0ceb04334bba361cb21d39 /sonar-ws
parentcc4b808264013326716a0ce7ef67eb1bd4452a6f (diff)
downloadsonarqube-8edd835fae1987fcd61b045a6c79b6e8ed8cf197.tar.gz
sonarqube-8edd835fae1987fcd61b045a6c79b6e8ed8cf197.zip
SONAR-10345 Migrate webhooks from PROPERTIES table to WEBHOOKS table.
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-webhooks.proto8
1 files changed, 4 insertions, 4 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-webhooks.proto b/sonar-ws/src/main/protobuf/ws-webhooks.proto
index b8dc2a859b9..0569208bc31 100644
--- a/sonar-ws/src/main/protobuf/ws-webhooks.proto
+++ b/sonar-ws/src/main/protobuf/ws-webhooks.proto
@@ -24,11 +24,11 @@ option java_package = "org.sonarqube.ws";
option java_outer_classname = "Webhooks";
option optimize_for = SPEED;
-// GET api/webhooks/search
-message SearchWsResponse {
- repeated Search webhooks = 1;
+// GET api/webhooks/list
+message ListWsResponse {
+ repeated List webhooks = 1;
- message Search {
+ message List {
optional string key = 1;
optional string name = 2;
optional string url = 3;