SetChildrenLabels is a handler wrapper which sets labels for the content on the children returned by the handler and passes through the children. Must follow a handler that returns the children to be labeled.
(manager content.Manager, f HandlerFunc)
| 233 | // the children returned by the handler and passes through the children. |
| 234 | // Must follow a handler that returns the children to be labeled. |
| 235 | func SetChildrenLabels(manager content.Manager, f HandlerFunc) HandlerFunc { |
| 236 | return SetChildrenMappedLabels(manager, f, nil) |
| 237 | } |
| 238 | |
| 239 | // SetChildrenMappedLabels is a handler wrapper which sets labels for the content on |
| 240 | // the children returned by the handler and passes through the children. |
no test coverage detected
searching dependent graphs…