(ctx context.Context, reply string, req *proxy.Request)
| 49 | } |
| 50 | |
| 51 | func (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 | } |
nothing calls this directly
no test coverage detected