(ctx context.Context, reply string, req *proxy.Request)
| 272 | } |
| 273 | |
| 274 | func (s *Server) bridgeVideoSourceDelete(ctx context.Context, reply string, req *proxy.Request) { |
| 275 | // bind dialog |
| 276 | if req.Key.Dialog != "" { |
| 277 | s.Dialog.Bind(req.Key.Dialog, "bridge", req.Key.ID) |
| 278 | } |
| 279 | |
| 280 | err := s.ari.Bridge().VideoSourceDelete(req.Key) |
| 281 | if err != nil { |
| 282 | s.sendError(reply, err) |
| 283 | return |
| 284 | } |
| 285 | |
| 286 | s.sendError(reply, nil) |
| 287 | } |
nothing calls this directly
no test coverage detected