()
| 485 | } |
| 486 | |
| 487 | static async getChannelGroups() { |
| 488 | try { |
| 489 | const response = await request(`${host}/api/channels/groups/`); |
| 490 | |
| 491 | return response; |
| 492 | } catch (e) { |
| 493 | errorNotification('Failed to retrieve channel groups', e); |
| 494 | } |
| 495 | } |
| 496 | |
| 497 | static async addChannelGroup(values) { |
| 498 | try { |
no test coverage detected