(ctx context.Context, reply string, req *proxy.Request)
| 57 | } |
| 58 | |
| 59 | func (s *Server) recordingLiveStop(ctx context.Context, reply string, req *proxy.Request) { |
| 60 | s.sendError(reply, s.ari.LiveRecording().Stop(req.Key)) |
| 61 | } |
| 62 | |
| 63 | func (s *Server) recordingLiveUnmute(ctx context.Context, reply string, req *proxy.Request) { |
| 64 | s.sendError(reply, s.ari.LiveRecording().Unmute(req.Key)) |
nothing calls this directly
no test coverage detected