(documentName: string)
| 75 | }, 5 * 60_000) |
| 76 | |
| 77 | function extractBoardUuid(documentName: string): string | null { |
| 78 | // Room naming: board:{board_uuid} |
| 79 | const match = documentName.match(/^board:(.+)$/) |
| 80 | return match ? match[1] : null |
| 81 | } |
| 82 | |
| 83 | // ── Redis connection ──────────────────────────────────────────────────────── |
| 84 |
no outgoing calls
no test coverage detected