diff options
author | Belen Pruvost <belen.pruvost@sonarsource.com> | 2022-04-22 09:32:10 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-04-29 20:03:18 +0000 |
commit | 52b24b06255c984d5a9638c4e30f16a440dc9217 (patch) | |
tree | f0806614def25794423ca929990d4983ea93b273 /sonar-ws/src/main/protobuf | |
parent | c78a7623a1956347ef0391f7aca76761db9d9bfe (diff) | |
download | sonarqube-52b24b06255c984d5a9638c4e30f16a440dc9217.tar.gz sonarqube-52b24b06255c984d5a9638c4e30f16a440dc9217.zip |
SONAR-16264 - Search Tokens endpoint update
Diffstat (limited to 'sonar-ws/src/main/protobuf')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-user_tokens.proto | 7 |
1 files changed, 7 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 ead834a91d7..983659285f6 100644 --- a/sonar-ws/src/main/protobuf/ws-user_tokens.proto +++ b/sonar-ws/src/main/protobuf/ws-user_tokens.proto @@ -43,5 +43,12 @@ message SearchWsResponse { optional string name = 1; optional string createdAt = 2; optional string lastConnectionDate = 3; + optional string type = 4; + optional Project project = 5; + + message Project { + optional string key = 1; + optional string name = 2; + } } } |