MCPcopy Create free account
hub / github.com/CyCoreSystems/ari-proxy / recordingStoredList

Method recordingStoredList

server/storedRecording.go:51–61  ·  view source on GitHub ↗
(ctx context.Context, reply string, req *proxy.Request)

Source from the content-addressed store, hash-verified

49}
50
51func (s *Server) recordingStoredList(ctx context.Context, reply string, req *proxy.Request) {
52 list, err := s.ari.StoredRecording().List(nil)
53 if err != nil {
54 s.sendError(reply, err)
55 return
56 }
57
58 s.publish(reply, &proxy.Response{
59 Keys: list,
60 })
61}

Callers

nothing calls this directly

Calls 4

sendErrorMethod · 0.95
publishMethod · 0.95
StoredRecordingMethod · 0.80
ListMethod · 0.65

Tested by

no test coverage detected