Merge pull request #667 from meshtastic/attended-state

Add is_unmessagable to User
This commit is contained in:
Ben Meadors 2025-05-14 10:47:46 -05:00 committed by GitHub
commit 62f86771ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.DS_Store

View file

@ -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 can be messaged
*/
bool is_unmessagable = 9;
}
message NodeInfoLite {

View file

@ -806,6 +806,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 can be messaged
*/
bool is_unmessagable = 9;
}
/*