grpc: removed set session state, states are a by product of actions done within a session and probably best to automate that instead of relying on clients responsibly setting proper values

This commit is contained in:
Blake Harnden 2021-05-06 11:39:18 -07:00
parent d40435fa68
commit 598cb0f10d
4 changed files with 0 additions and 68 deletions

View file

@ -25,8 +25,6 @@ service CoreApi {
}
rpc CheckSession (CheckSessionRequest) returns (CheckSessionResponse) {
}
rpc SetSessionState (SetSessionStateRequest) returns (SetSessionStateResponse) {
}
rpc SessionAlert (SessionAlertRequest) returns (SessionAlertResponse) {
}
@ -216,15 +214,6 @@ message GetSessionResponse {
Session session = 1;
}
message SetSessionStateRequest {
int32 session_id = 1;
SessionState.Enum state = 2;
}
message SetSessionStateResponse {
bool result = 1;
}
message SessionAlertRequest {
int32 session_id = 1;
ExceptionLevel.Enum level = 2;