diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-07-26 17:21:33 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-07-28 17:31:14 +0200 |
commit | 1d702b6b507bd7c346381cf371d16fd8c556b99e (patch) | |
tree | 85d9a4a21dee50a8410477ea5eeb52157808737f /sonar-ws/src/main/protobuf | |
parent | fa27bf616fad3cb743994ea8407feabd96a22ae9 (diff) | |
download | sonarqube-1d702b6b507bd7c346381cf371d16fd8c556b99e.tar.gz sonarqube-1d702b6b507bd7c346381cf371d16fd8c556b99e.zip |
SONAR-7926 Create WS to add project link
Diffstat (limited to 'sonar-ws/src/main/protobuf')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-projectlink.proto | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projectlink.proto b/sonar-ws/src/main/protobuf/ws-projectlink.proto index 32e1d59d725..073b3e498b0 100644 --- a/sonar-ws/src/main/protobuf/ws-projectlink.proto +++ b/sonar-ws/src/main/protobuf/ws-projectlink.proto @@ -11,6 +11,10 @@ message SearchWsResponse { repeated Link links = 1; } +message CreateWsResponse { + optional Link link = 1; +} + message Link { optional string id = 1; optional string name = 2; |