diff options
author | Aurelien Poscia <aurelien.poscia@sonarsource.com> | 2022-07-07 10:36:32 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-07-08 20:02:48 +0000 |
commit | 76a154997cd2b447bc4cc4fc8336fcba7407dd29 (patch) | |
tree | 4de542e979de49de77078a3eeff9ade188f68e8a /sonar-ws | |
parent | 26fde2bdeb8ca2d5b9b76ce1ebc11706c9471cd0 (diff) | |
download | sonarqube-76a154997cd2b447bc4cc4fc8336fcba7407dd29.tar.gz sonarqube-76a154997cd2b447bc4cc4fc8336fcba7407dd29.zip |
SONAR-16614 add to api/rules/search and api/rules/show payload, the subfield key in the field ruleDescriptionSection.context
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-rules.proto | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-rules.proto b/sonar-ws/src/main/protobuf/ws-rules.proto index fb943a1d97e..e1772529d3c 100644 --- a/sonar-ws/src/main/protobuf/ws-rules.proto +++ b/sonar-ws/src/main/protobuf/ws-rules.proto @@ -135,6 +135,7 @@ message Rule { message Context { required string displayName = 1; + required string key = 2; } } |