AddContextFiller adds the specified filler.
(f fillcontext.Filler)
| 287 | |
| 288 | // AddContextFiller adds the specified filler. |
| 289 | func (c *Component) AddContextFiller(f fillcontext.Filler) { |
| 290 | c.fillers = append(c.fillers, f) |
| 291 | } |
| 292 | |
| 293 | // FromRequestContext returns a derived context from the component context with key values from the request context. |
| 294 | // This can be used to decouple the lifetime from the request context while keeping security information. |
no outgoing calls