(clientExpression: string, user?: string)
| 60 | }, |
| 61 | |
| 62 | unsubscribe (clientExpression: string, user?: string) { |
| 63 | clientHandler.getClients(clientExpression).forEach((client) => { |
| 64 | if (user) { |
| 65 | client.client.presence.unsubscribe(user) |
| 66 | } else { |
| 67 | client.client.presence.unsubscribe() |
| 68 | } |
| 69 | }) |
| 70 | }, |
| 71 | |
| 72 | getAll (clientExpression: string, users?: string[]) { |
| 73 | clientHandler.getClients(clientExpression).forEach((client) => { |
nothing calls this directly
no test coverage detected