diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-03-24 08:43:02 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-03-24 08:43:19 +0100 |
commit | f90f904436231604f842d4bca99f8508ca2e664a (patch) | |
tree | b10498e734dc6a5298702b158bde239acadb78be /sonar-ws | |
parent | c6726e9207d56c672c3b4cdd21f4968cdd17a29a (diff) | |
download | sonarqube-f90f904436231604f842d4bca99f8508ca2e664a.tar.gz sonarqube-f90f904436231604f842d4bca99f8508ca2e664a.zip |
SONAR-8969 Replace user email by avatar in issue changelog WS
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-issues.proto | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-issues.proto b/sonar-ws/src/main/protobuf/ws-issues.proto index 361efbd4a92..4e31149efcf 100644 --- a/sonar-ws/src/main/protobuf/ws-issues.proto +++ b/sonar-ws/src/main/protobuf/ws-issues.proto @@ -191,9 +191,11 @@ message ChangelogWsResponse { message Changelog { optional string user = 1; optional string userName = 2; - optional string email = 3; + // Email is no more returned since 6.3 + optional string deprecatedEmail = 3; optional string creationDate = 4; repeated Diff diffs = 5; + optional string avatar = 6; message Diff { optional string key = 1; |