diff options
Diffstat (limited to 'sonar-ws/src/main')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-projectbranches.proto | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projectbranches.proto b/sonar-ws/src/main/protobuf/ws-projectbranches.proto index 8054febfafc..4500dc5a784 100644 --- a/sonar-ws/src/main/protobuf/ws-projectbranches.proto +++ b/sonar-ws/src/main/protobuf/ws-projectbranches.proto @@ -37,12 +37,11 @@ message ShowWsResponse { message Branch { optional string name = 1; - optional string project = 2; - optional bool isMain = 3; - optional BranchType type = 4; + optional bool isMain = 2; + optional BranchType type = 3; // Merge branch is only present for short living branch - optional string mergeBranch = 5; - optional Status status = 6; + optional string mergeBranch = 4; + optional Status status = 5; message Status { // Quality gate status is only present for long living branch |