core, ui: group members permanent connection errors (#6662)

This commit is contained in:
spaced4ndy
2026-03-06 15:24:55 +00:00
committed by GitHub
parent e0dc4366e0
commit 3f4e7f379d
17 changed files with 501 additions and 62 deletions
+29 -9
View File
@@ -1473,15 +1473,35 @@ LARGE:
## ConnStatus
**Enum type**:
- "new"
- "prepared"
- "joined"
- "requested"
- "accepted"
- "snd-ready"
- "ready"
- "deleted"
**Discriminated union type**:
New:
- type: "new"
Prepared:
- type: "prepared"
Joined:
- type: "joined"
Requested:
- type: "requested"
Accepted:
- type: "accepted"
SndReady:
- type: "sndReady"
Ready:
- type: "ready"
Deleted:
- type: "deleted"
Failed:
- type: "failed"
- connError: string
---