aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/src/main
diff options
context:
space:
mode:
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2017-03-01 12:00:49 +0100
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2017-03-02 09:14:22 +0100
commit17c0b638ccf1279e2066236fad2a119c4a1e3f62 (patch)
treec7ee21795b17bd6a1334f142093f3afe445dec03 /sonar-ws/src/main
parentdb48fea3db5f91d6819d0951193c57af81b5e7ae (diff)
downloadsonarqube-17c0b638ccf1279e2066236fad2a119c4a1e3f62.tar.gz
sonarqube-17c0b638ccf1279e2066236fad2a119c4a1e3f62.zip
SONAR-8841 Add tags to WS api/components/show and tree response
Diffstat (limited to 'sonar-ws/src/main')
-rw-r--r--sonar-ws/src/main/protobuf/ws-components.proto6
1 files changed, 6 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-components.proto b/sonar-ws/src/main/protobuf/ws-components.proto
index effdadc7386..2524346cd36 100644
--- a/sonar-ws/src/main/protobuf/ws-components.proto
+++ b/sonar-ws/src/main/protobuf/ws-components.proto
@@ -77,4 +77,10 @@ message Component {
optional string language = 10;
optional bool isFavorite = 11;
optional string analysisDate = 13;
+ optional Tags tags = 14;
+
+ message Tags {
+ repeated string tags = 1;
+ }
}
+