From 802f3f45bfbf64e0f5fa90ed14ce8b3dcab4bcf3 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Fri, 12 May 2023 08:00:13 -0500 Subject: [PATCH 1/2] Managed device mode --- meshtastic/config.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index 416be4d..0058923 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -129,6 +129,12 @@ message Config { * Treat double tap interrupt on supported accelerometers as a button press if set to true */ bool double_tap_as_button_press = 8; + + /* + * If true, device is considered to be "managed" by a mesh administrator + * Clients should then limit available configuration and administrative option inside the user interface + */ + bool is_managed = 9; } /* From 9d66e84d9a75858182f846a662bbd0ec0ec2bc1e Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Fri, 12 May 2023 08:29:23 -0500 Subject: [PATCH 2/2] Plural --- meshtastic/config.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/config.proto b/meshtastic/config.proto index 0058923..9006b86 100644 --- a/meshtastic/config.proto +++ b/meshtastic/config.proto @@ -132,7 +132,7 @@ message Config { /* * If true, device is considered to be "managed" by a mesh administrator - * Clients should then limit available configuration and administrative option inside the user interface + * Clients should then limit available configuration and administrative options inside the user interface */ bool is_managed = 9; }