1
0
Fork 0

Add token and identifier

This commit is contained in:
Florian RICHER 2023-01-31 17:35:21 +01:00
parent 115855ac75
commit f8a03bc18a
No known key found for this signature in database
GPG key ID: 6BF27BF8A1E71623
5 changed files with 27 additions and 23 deletions

View file

@ -13,8 +13,9 @@ message AuthorizeRequest {
// identifier of the project
string identifier = 1;
// ssh_keys from ssh agent
string public_ssh_keys = 2;
// command?
string token = 2;
// command like /bin/bash
string command = 3;
}
enum AuthorizationStatus {
@ -26,7 +27,6 @@ message AuthorizeResponse {
AuthorizationStatus status = 1;
string error_message = 2;
string session_uuid = 3;
string log_file = 4;
}
message TerminateRequest {