diff options
author | Pierre <pierre.guillot@sonarsource.com> | 2022-07-05 17:53:50 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-07-12 14:30:04 +0000 |
commit | 18569e66e3e903aa63d2293def45a7c92b102de9 (patch) | |
tree | 4e15a5328e232f6a377a360b7c7b308beec5e718 /sonar-ws | |
parent | 2d616a01f5d286270b6ab822b2f2d6840d276d63 (diff) | |
download | sonarqube-18569e66e3e903aa63d2293def45a7c92b102de9.tar.gz sonarqube-18569e66e3e903aa63d2293def45a7c92b102de9.zip |
SONAR-16598 Add new generic concepts to rules/show and rules/search endpoints
(cherry picked from commit 31375405689110a07958f2c3be3f3b6d2a824e2b)
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-rules.proto | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-rules.proto b/sonar-ws/src/main/protobuf/ws-rules.proto index e1772529d3c..ec2ee250624 100644 --- a/sonar-ws/src/main/protobuf/ws-rules.proto +++ b/sonar-ws/src/main/protobuf/ws-rules.proto @@ -123,6 +123,7 @@ message Rule { optional bool isExternal = 47; optional DeprecatedKeys deprecatedKeys = 48; optional DescriptionSections descriptionSections = 49; + optional GenericConcepts genericConcepts = 50; message DescriptionSections { repeated DescriptionSection descriptionSections = 1; @@ -163,6 +164,10 @@ message Tags { repeated string tags = 1; } +message GenericConcepts { + repeated string genericConcepts = 1; +} + message Actives { map<string, ActiveList> actives = 1; } |