| 316 | } |
| 317 | |
| 318 | bool ServerImpl::m_addAlias(std::string const &path, |
| 319 | std::string const &source, |
| 320 | common::AliasPriority priority) { |
| 321 | /// @todo Handle this one with AliasProcessor. |
| 322 | auto &node = m_tree.getNodeByPath(path); |
| 323 | bool change = common::addAlias(node, source, priority); |
| 324 | m_treeDirty += change; |
| 325 | return change; |
| 326 | } |
| 327 | |
| 328 | bool ServerImpl::m_addAliases(Json::Value const &aliases, |
| 329 | common::AliasPriority priority) { |
nothing calls this directly
no test coverage detected