diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-10-27 17:05:43 +0200 |
---|---|---|
committer | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-10-30 09:20:37 +0100 |
commit | 6daddd1d06a834867faccbbb6a0e60f448f2c6d4 (patch) | |
tree | 4b077a11038d5b2607e13200971961c0ec08710b /sonar-ws | |
parent | 771c15c18356cfe02bad535bdd08ffb1c148d016 (diff) | |
download | sonarqube-6daddd1d06a834867faccbbb6a0e60f448f2c6d4.tar.gz sonarqube-6daddd1d06a834867faccbbb6a0e60f448f2c6d4.zip |
SONAR-10031 Stop computing avatar hash in web app (#2769)
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-permissions.proto | 1 | ||||
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-users.proto | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-permissions.proto b/sonar-ws/src/main/protobuf/ws-permissions.proto index 2ed5c93bb22..6b6b1e2e501 100644 --- a/sonar-ws/src/main/protobuf/ws-permissions.proto +++ b/sonar-ws/src/main/protobuf/ws-permissions.proto @@ -120,6 +120,7 @@ message User { optional string name = 2; optional string email = 3; repeated string permissions = 4; + optional string avatar = 5; } message OldGroup { diff --git a/sonar-ws/src/main/protobuf/ws-users.proto b/sonar-ws/src/main/protobuf/ws-users.proto index c71a3395f2d..cf5a9d96456 100644 --- a/sonar-ws/src/main/protobuf/ws-users.proto +++ b/sonar-ws/src/main/protobuf/ws-users.proto @@ -106,6 +106,7 @@ message CurrentWsResponse { repeated string groups = 9; optional Permissions permissions = 10; optional bool showOnboardingTutorial = 11; + optional string avatar = 12; message Permissions { repeated string global = 1; |