(params)
| 1102 | } |
| 1103 | |
| 1104 | static async queryStreams(params) { |
| 1105 | try { |
| 1106 | const response = await request( |
| 1107 | `${host}/api/channels/streams/?${params.toString()}` |
| 1108 | ); |
| 1109 | |
| 1110 | return response; |
| 1111 | } catch (e) { |
| 1112 | errorNotification('Failed to fetch streams', e); |
| 1113 | } |
| 1114 | } |
| 1115 | |
| 1116 | static async queryStreamsTable(params) { |
| 1117 | try { |
no test coverage detected