chore: fixed missing GoOs gRPC call in bridge-gui-tester.

This commit is contained in:
Xavier Michelon
2023-08-07 11:13:58 +02:00
parent 0fc41d1966
commit 6c9d96d5e1
2 changed files with 11 additions and 0 deletions

View File

@ -214,6 +214,16 @@ grpc::Status GRPCService::IsTelemetryDisabled(::grpc::ServerContext *, ::google:
}
//****************************************************************************************************************************************************
/// \param[out] response The response.
/// \return The status for the call.
//****************************************************************************************************************************************************
Status GRPCService::GoOs(ServerContext *, Empty const*, StringValue *response) {
response->set_value(app().mainWindow().settingsTab().os().toStdString());
return Status::OK;
}
//****************************************************************************************************************************************************
/// \return The status for the call.
//****************************************************************************************************************************************************