From ef81503d2fbcb01981904b6d68b9d2e98174509f Mon Sep 17 00:00:00 2001 From: Nadja Reitzenstein Date: Sun, 19 Sep 2021 19:59:14 +0200 Subject: [PATCH] Search for machine by name not uuid --- machinesystem.capnp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machinesystem.capnp b/machinesystem.capnp index d658405..2697d3f 100644 --- a/machinesystem.capnp +++ b/machinesystem.capnp @@ -15,6 +15,6 @@ interface MachineSystem interface Info $CSharp.name("InfoInterface") { getMachineList @0 () -> ( machine_list :List(Machine) ); - getMachine @1 ( uuid :General.UUID ) -> ( machine :Machine, dummy :UInt8 = 0 ); + getMachine @1 ( name :Text ) -> ( machine :Machine, dummy :UInt8 = 0 ); } }