diff options
author | Pierre <pierre.guillot@sonarsource.com> | 2022-07-05 17:53:50 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-07-08 20:02:47 +0000 |
commit | d2673b56781ac7d1f359a291f6294c015131fb6d (patch) | |
tree | 19ec9d15ee64230ab26509380d0a5e31d8992605 /sonar-ws/src | |
parent | 342a908193106928522b2c344735251429f037e7 (diff) | |
download | sonarqube-d2673b56781ac7d1f359a291f6294c015131fb6d.tar.gz sonarqube-d2673b56781ac7d1f359a291f6294c015131fb6d.zip |
SONAR-16598 Add new generic concepts to rules/show and rules/search endpoints
Diffstat (limited to 'sonar-ws/src')
-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 fb943a1d97e..43338b26563 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; @@ -162,6 +163,10 @@ message Tags { repeated string tags = 1; } +message GenericConcepts { + repeated string genericConcepts = 1; +} + message Actives { map<string, ActiveList> actives = 1; } |