Finalize channel is_muted work

This commit is contained in:
Jason P 2025-10-10 08:17:29 -05:00
parent cd5c83a728
commit de145b5211

View file

@ -86,11 +86,6 @@ message ChannelSettings {
* Per-channel module settings.
*/
ModuleSettings module_settings = 7;
/*
* Whether or not we should receive notifactions / alerts through this channel
*/
bool mute = 8;
}
/*
@ -103,10 +98,10 @@ message ModuleSettings {
uint32 position_precision = 1;
/*
* Controls whether or not the phone / clients should mute the current channel
* Controls whether or not the client / device should mute the current channel
* Useful for noisy public channels you don't necessarily want to disable
*/
bool is_client_muted = 2;
bool is_muted = 2;
}
/*