Add is_attended to User

pull/667/head
Ben Meadors 2025-03-26 07:27:23 -05:00
rodzic b4044f8f9f
commit 6d7c9e6180
2 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -94,6 +94,11 @@ message UserLite {
* This is sent out to other nodes on the mesh to allow them to compute a shared secret key.
*/
bytes public_key = 7;
/*
* Whether or not the node is attended by a User
*/
optional bool is_attended = 8;
}
message NodeInfoLite {

Wyświetl plik

@ -781,6 +781,11 @@ message User {
* This is sent out to other nodes on the mesh to allow them to compute a shared secret key.
*/
bytes public_key = 8;
/*
* Whether or not the node is attended by a User
*/
optional bool is_attended = 9;
}
/*