MCPcopy Create free account
hub / github.com/Dispatcharr/Dispatcharr / createRecording

Method createRecording

frontend/src/api.js:2991–3004  ·  view source on GitHub ↗
(values)

Source from the content-addressed store, hash-verified

2989 }
2990
2991 static async createRecording(values) {
2992 try {
2993 const response = await request(`${host}/api/channels/recordings/`, {
2994 method: 'POST',
2995 body: values,
2996 });
2997
2998 useChannelsStore.getState().fetchRecordings();
2999
3000 return response;
3001 } catch (e) {
3002 errorNotification('Failed to create recording', e);
3003 }
3004 }
3005
3006 static async updateRecording(id, values) {
3007 try {

Callers 3

createRecordingFunction · 0.80
createRecordingFunction · 0.80
guideUtils.test.jsFile · 0.80

Calls 2

requestFunction · 0.85
errorNotificationFunction · 0.85

Tested by

no test coverage detected