aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto
diff options
context:
space:
mode:
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2017-06-01 17:27:41 +0200
committerEric Hartmann <hartmann.eric@gmail.com>2017-06-14 15:43:12 +0200
commit380816fec9f40f8d2c25c3f08be2d783b7293226 (patch)
tree286fef86e8cdd36565d51937294c200e98a88f25 /sonar-ws/src/main/protobuf/ws-qualityprofiles.proto
parent3e26c9b9b44ebabbc2c81e134c26799ce3f4bc3b (diff)
downloadsonarqube-380816fec9f40f8d2c25c3f08be2d783b7293226.tar.gz
sonarqube-380816fec9f40f8d2c25c3f08be2d783b7293226.zip
SONAR-9303 IT to test built-in profile cannot be modified
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-qualityprofiles.proto')
-rw-r--r--sonar-ws/src/main/protobuf/ws-qualityprofiles.proto11
1 files changed, 11 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto b/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto
index 9c5c9acaeb0..a6f2df7b39a 100644
--- a/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto
+++ b/sonar-ws/src/main/protobuf/ws-qualityprofiles.proto
@@ -88,3 +88,14 @@ message InheritanceWsResponse {
optional bool isBuiltIn = 6;
}
}
+
+// WS api/qualityprofiles/copy
+message CopyWsResponse {
+ optional string key = 1;
+ optional string name = 2;
+ optional string language = 3;
+ optional string languageName = 4;
+ optional bool isDefault = 5;
+ optional bool isInherited = 6;
+ optional string parentKey = 7;
+}