| 355 | } |
| 356 | |
| 357 | Value HostsTable::ActionUrlExpandedAccessor(const Value& row) |
| 358 | { |
| 359 | Host::Ptr host = static_cast<Host::Ptr>(row); |
| 360 | |
| 361 | if (!host) |
| 362 | return Empty; |
| 363 | |
| 364 | MacroProcessor::ResolverList resolvers { |
| 365 | { "host", host }, |
| 366 | }; |
| 367 | |
| 368 | return MacroProcessor::ResolveMacros(host->GetActionUrl(), resolvers); |
| 369 | } |
| 370 | |
| 371 | Value HostsTable::PluginOutputAccessor(const Value& row) |
| 372 | { |
nothing calls this directly
no outgoing calls
no test coverage detected