diff options
author | Matteo Mara <matteo.mara@sonarsource.com> | 2022-06-29 15:31:28 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-07-01 20:03:06 +0000 |
commit | 05ebcc134533b03a324a2710c3fe6d711850a5c4 (patch) | |
tree | 378093f77e0dc6205a718a8ca089b17b6375c50f /sonar-ws | |
parent | e80f431e31504a51ed67193a6d5e8d9b0d2c0d62 (diff) | |
download | sonarqube-05ebcc134533b03a324a2710c3fe6d711850a5c4.tar.gz sonarqube-05ebcc134533b03a324a2710c3fe6d711850a5c4.zip |
SONAR-16565 update the API api/user_tokens/generate for accepting the token expiration date
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-user_tokens.proto | 1 |
1 files changed, 1 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 983659285f6..786a3bfc5ff 100644 --- a/sonar-ws/src/main/protobuf/ws-user_tokens.proto +++ b/sonar-ws/src/main/protobuf/ws-user_tokens.proto @@ -32,6 +32,7 @@ message GenerateWsResponse { optional string createdAt = 4; optional string type = 5; optional string projectKey = 6; + optional string expirationDate = 7; } // WS api/user_tokens/search |