summaryrefslogtreecommitdiffstats
path: root/packages/meshbay-node/src/meshbay_node/ops.py
diff options
context:
space:
mode:
authorChristophe Besson <cbesson@gmail.com>2026-09-24 11:23:12 +0200
committerChristophe Besson <cbesson@gmail.com>2026-09-24 16:45:38 +0200
commitbd9f2e8a8d1d7abe05f61f749992cda30a81cd15 (patch)
tree48fc9822ff50e6e163523ce4365dbc3b5942fcea /packages/meshbay-node/src/meshbay_node/ops.py
parent56db13f8b3469c6063a5915155234b4a39aa328f (diff)
downloadmeshbay-bd9f2e8a8d1d7abe05f61f749992cda30a81cd15.tar.gz
refactor(node): move the operator's group controls out of webrtc_server
GroupOpsMixin in transport/webrtc/group_ops.py: member revocation and unpinning, the group key rotation, apps and their directories with the allow-list, and Search listing. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-node/src/meshbay_node/ops.py')
-rw-r--r--packages/meshbay-node/src/meshbay_node/ops.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/meshbay-node/src/meshbay_node/ops.py b/packages/meshbay-node/src/meshbay_node/ops.py
index bdcb130..cee4e75 100644
--- a/packages/meshbay-node/src/meshbay_node/ops.py
+++ b/packages/meshbay-node/src/meshbay_node/ops.py
@@ -1654,7 +1654,7 @@ async def set_enabled_apps(state: dict, group_id: str, apps: list[str]) -> dict:
"""
roster = _roster(state)
ctx = _group_ctx(state, group_id)
- # See the same guard in webrtc_server._do_apps_enabled: Files cannot be
+ # See the same guard in webrtc/group_ops.py _do_apps_enabled: Files cannot be
# turned off, and both writers put it at the front so the two agree.
if "files" not in apps:
apps = ["files"] + list(apps)