aboutsummaryrefslogtreecommitdiffstats
path: root/packages/meshbay-hub/src/meshbay_hub/static/transport.js
diff options
context:
space:
mode:
authorChristophe Besson <cbesson@gmail.com>2026-08-29 18:42:43 +0200
committerChristophe Besson <cbesson@gmail.com>2026-08-29 18:52:53 +0200
commit1f8a52484412b48205e5ff6aac506428e2fb77ed (patch)
tree5598419ee4caef21f607876de6af2d30d6452191 /packages/meshbay-hub/src/meshbay_hub/static/transport.js
parent8de80b7e19738b716d9973c0b4ba3b42085f7359 (diff)
downloadmeshbay-1f8a52484412b48205e5ff6aac506428e2fb77ed.tar.gz
feat(node): editable node settings in the Node page (D5)
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 <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/static/transport.js')
-rw-r--r--packages/meshbay-hub/src/meshbay_hub/static/transport.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/static/transport.js b/packages/meshbay-hub/src/meshbay_hub/static/transport.js
index 5a6e36b..b60bd93 100644
--- a/packages/meshbay-hub/src/meshbay_hub/static/transport.js
+++ b/packages/meshbay-hub/src/meshbay_hub/static/transport.js
@@ -1310,6 +1310,14 @@ class MeshBayTransport {
return msg;
}
+ async updateNodeSettings(settings) {
+ const msg = await this._sendAndWait({
+ type: 'node_settings_set', v: '0.1', settings,
+ });
+ if (msg.type === 'error') throw new Error(msg.detail);
+ return msg;
+ }
+
async addRoot(groupId, path, { name, kind, upload } = {}, signFn) {
const msg = await this._sendAndWait({
type: 'root_add', v: '0.1',