From 1f8a52484412b48205e5ff6aac506428e2fb77ed Mon Sep 17 00:00:00 2001 From: Christophe Besson Date: Sat, 29 Aug 2026 18:42:43 +0200 Subject: feat(node): editable node settings in the Node page (D5) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Expose invite_ttl_hours, pair_ttl_hours, device_request_ttl_minutes, max_concurrent_streams and transcode_incompatible_video in the Node management panel. Changes are applied immediately via roster.db and written back to node.toml so they survive a DB wipe. On startup, roster overrides take precedence over node.toml defaults. Draft v6 ยง2.11 documents the design; MNP gains node_settings_set / node_settings_set_ack for the browser path. Co-Authored-By: Claude Opus 4.6 --- packages/meshbay-common/src/meshbay_common/protocol.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'packages/meshbay-common/src/meshbay_common') diff --git a/packages/meshbay-common/src/meshbay_common/protocol.py b/packages/meshbay-common/src/meshbay_common/protocol.py index a3fb4de..ff951e7 100644 --- a/packages/meshbay-common/src/meshbay_common/protocol.py +++ b/packages/meshbay-common/src/meshbay_common/protocol.py @@ -166,6 +166,8 @@ class MNP: GROUP_ATTACH_ACK = "group_attach_ack" GROUP_DETACH = "group_detach" # operator โ†’ node: stop hosting a group GROUP_DETACH_ACK = "group_detach_ack" + NODE_SETTINGS_SET = "node_settings_set" # operator โ†’ node: change daemon settings + NODE_SETTINGS_SET_ACK = "node_settings_set_ack" NODE_RELOAD = "node_reload" # operator โ†’ node: re-read node.toml NODE_RELOAD_ACK = "node_reload_ack" -- cgit v1.2.3