aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2019-01-30 13:54:26 +0100
committersonartech <sonartech@sonarsource.com>2019-02-11 09:11:41 +0100
commit308d6a85e6489a3ed739e205f9de6bc5050b09f5 (patch)
tree3b8b25aac91472a222ff7bba5f38016b09b44bf2 /sonar-ws
parent5e68732f4883ffb937f42245072e83265cd09cce (diff)
downloadsonarqube-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.proto1
-rw-r--r--sonar-ws/src/main/protobuf/ws-users.proto1
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 {