Merge pull request #469 from meshtastic/is_favorite

Add is_favorite to NodeInfo/Lite
pull/471/head
Ben Meadors 2024-03-21 11:30:52 -05:00 zatwierdzone przez GitHub
commit bcfb49c498
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -129,6 +129,12 @@ message NodeInfoLite {
* Number of hops away from us this node is (0 if adjacent)
*/
uint32 hops_away = 9;
/*
* True if node is in our favorites list
* Persists between NodeDB internal clean ups
*/
bool is_favorite = 10;
}
/*

Wyświetl plik

@ -1126,6 +1126,12 @@ message NodeInfo {
* Number of hops away from us this node is (0 if adjacent)
*/
uint32 hops_away = 9;
/*
* True if node is in our favorites list
* Persists between NodeDB internal clean ups
*/
bool is_favorite = 10;
}
/*