diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-08-11 11:23:31 +0200 |
---|---|---|
committer | Janos Gyerik <janos.gyerik@sonarsource.com> | 2017-09-12 10:59:55 +0200 |
commit | 0a5d420a59a1660327ce9d132f4e57e2fcbe76f6 (patch) | |
tree | a67419f6800fdb077343fcf9bb9e7f7db14f60b8 /sonar-ws/src/main/protobuf/ws-projectbranches.proto | |
parent | 09a2697f50fd4cf2895c7d62957fcb1f4852fe52 (diff) | |
download | sonarqube-0a5d420a59a1660327ce9d132f4e57e2fcbe76f6.tar.gz sonarqube-0a5d420a59a1660327ce9d132f4e57e2fcbe76f6.zip |
SONAR-9616 Return merge branch in api/projectbranches/list
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-projectbranches.proto')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-projectbranches.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projectbranches.proto b/sonar-ws/src/main/protobuf/ws-projectbranches.proto index 7b57be2e420..ea51ef7184a 100644 --- a/sonar-ws/src/main/protobuf/ws-projectbranches.proto +++ b/sonar-ws/src/main/protobuf/ws-projectbranches.proto @@ -33,6 +33,8 @@ message ListWsResponse { optional string name = 1; optional bool isMain = 2; optional BranchType type = 3; + // Merge branch is only present if it's a short living branch + optional string mergeBranch = 4; } enum BranchType { |