diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2019-01-30 13:54:26 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2019-02-11 09:11:41 +0100 |
commit | 308d6a85e6489a3ed739e205f9de6bc5050b09f5 (patch) | |
tree | 3b8b25aac91472a222ff7bba5f38016b09b44bf2 /sonar-ws | |
parent | 5e68732f4883ffb937f42245072e83265cd09cce (diff) | |
download | sonarqube-308d6a85e6489a3ed739e205f9de6bc5050b09f5.tar.gz sonarqube-308d6a85e6489a3ed739e205f9de6bc5050b09f5.zip |
Merge pull request #1178 from SonarSource/feature/jl/add_dates_to_users_and_user_tokens
Add dates to users and user tokens
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-user_tokens.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-user_tokens.proto b/sonar-ws/src/main/protobuf/ws-user_tokens.proto index d25e2af36bb..a146f8c9bf4 100644 --- a/sonar-ws/src/main/protobuf/ws-user_tokens.proto +++ b/sonar-ws/src/main/protobuf/ws-user_tokens.proto @@ -40,5 +40,6 @@ message SearchWsResponse { message UserToken { optional string name = 1; optional string createdAt = 2; + optional string lastConnectionDate = 3; } } diff --git a/sonar-ws/src/main/protobuf/ws-users.proto b/sonar-ws/src/main/protobuf/ws-users.proto index 917cd7c2b58..baaa31adc84 100644 --- a/sonar-ws/src/main/protobuf/ws-users.proto +++ b/sonar-ws/src/main/protobuf/ws-users.proto @@ -43,6 +43,7 @@ message SearchWsResponse { optional string externalIdentity = 9; optional string externalProvider = 10; optional string avatar = 11; + optional string lastConnectionDate = 12; } message Groups { |