diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-09-24 11:23:12 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-09-24 16:45:38 +0200 |
| commit | bd9f2e8a8d1d7abe05f61f749992cda30a81cd15 (patch) | |
| tree | 48fc9822ff50e6e163523ce4365dbc3b5942fcea /packages/meshbay-node/src/meshbay_node/ops.py | |
| parent | 56db13f8b3469c6063a5915155234b4a39aa328f (diff) | |
| download | meshbay-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.py | 2 |
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) |