(action *management.Action)
| 83 | } |
| 84 | |
| 85 | func (r *Renderer) ActionDeploy(action *management.Action) { |
| 86 | r.Heading("action deployed") |
| 87 | r.Result(makeActionView(action)) |
| 88 | } |
| 89 | |
| 90 | func makeActionView(action *management.Action) *actionView { |
| 91 | var triggers = make([]string, 0, len(action.SupportedTriggers)) |
no test coverage detected