MCPcopy Index your code
hub / github.com/Dispatcharr/Dispatcharr / updateChannelGroup

Function updateChannelGroup

frontend/src/utils/forms/ChannelGroupUtils.js:3–8  ·  view source on GitHub ↗
(channelGroup, values)

Source from the content-addressed store, hash-verified

1import API from '../../api.js';
2
3export const updateChannelGroup = (channelGroup, values) => {
4 return API.updateChannelGroup({
5 id: channelGroup.id,
6 ...values,
7 });
8};
9export const addChannelGroup = (values) => {
10 return API.addChannelGroup(values);
11};

Callers 3

GroupManager.jsxFile · 0.90
onSubmitFunction · 0.90

Calls 1

updateChannelGroupMethod · 0.80

Tested by

no test coverage detected