aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorDuarte Meneses <duarte.meneses@sonarsource.com>2020-04-29 12:01:10 -0500
committersonartech <sonartech@sonarsource.com>2020-05-25 20:05:21 +0000
commit85b940dd935f57860f26dff7f1bfaa9de1ba8af2 (patch)
treea84f4075e6b09ec7c697c2990e18cb71fc27c4cf /sonar-ws
parent79beb640edf1fb0154d318e20aacb6bf003288e4 (diff)
downloadsonarqube-85b940dd935f57860f26dff7f1bfaa9de1ba8af2.tar.gz
sonarqube-85b940dd935f57860f26dff7f1bfaa9de1ba8af2.zip
SONAR-13221 change PK of GROUPS and update FKs
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-user_groups.proto2
-rw-r--r--sonar-ws/src/main/protobuf/ws-users.proto2
2 files changed, 2 insertions, 2 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-user_groups.proto b/sonar-ws/src/main/protobuf/ws-user_groups.proto
index 07918617d9b..d4e70780514 100644
--- a/sonar-ws/src/main/protobuf/ws-user_groups.proto
+++ b/sonar-ws/src/main/protobuf/ws-user_groups.proto
@@ -43,7 +43,7 @@ message SearchWsResponse {
}
message Group {
- optional int64 id = 1;
+ optional string uuid = 1;
optional string organization = 2;
optional string name = 3;
optional string description = 4;
diff --git a/sonar-ws/src/main/protobuf/ws-users.proto b/sonar-ws/src/main/protobuf/ws-users.proto
index a12b035594f..7b44cbf71c1 100644
--- a/sonar-ws/src/main/protobuf/ws-users.proto
+++ b/sonar-ws/src/main/protobuf/ws-users.proto
@@ -87,7 +87,7 @@ message GroupsWsResponse {
repeated Group groups = 2;
message Group {
- optional int64 id = 1;
+ optional string id = 1;
optional string name = 2;
optional string description = 3;
optional bool selected = 4;