Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions meshtastic/admin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,16 @@ message AdminMessage {
*/
uint32 remove_ignored_node = 48;

/*
* Set specified node-num to be muted
*/
uint32 set_muted_node = 49;

/*
* Set specified node-num to be heard / not-muted
*/
uint32 remove_muted_node = 50;

/*
* Begins an edit transaction for config, module config, owner, and channel settings changes
* This will delay the standard *implicit* save to the file system and subsequent reboot behavior until committed (commit_edit_settings)
Expand Down
5 changes: 5 additions & 0 deletions meshtastic/channel.proto
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ message ChannelSettings {
* Per-channel module settings.
*/
ModuleSettings module_settings = 7;

/*
* Whether or not we should receive notifactions / alerts through this channel
*/
bool mute = 8;
}

/*
Expand Down