(params)
| 1154 | } |
| 1155 | |
| 1156 | static async getAllStreamIds(params) { |
| 1157 | try { |
| 1158 | const response = await request( |
| 1159 | `${host}/api/channels/streams/ids/?${params.toString()}` |
| 1160 | ); |
| 1161 | |
| 1162 | return response; |
| 1163 | } catch (e) { |
| 1164 | errorNotification('Failed to fetch stream IDs', e); |
| 1165 | } |
| 1166 | } |
| 1167 | |
| 1168 | static async getStreamGroups() { |
| 1169 | try { |
no test coverage detected