| 228 | } |
| 229 | |
| 230 | bool ServerImpl::addAlias(std::string const &path, |
| 231 | std::string const &source, |
| 232 | common::AliasPriority priority) { |
| 233 | |
| 234 | bool wasChanged; |
| 235 | m_callControlled( |
| 236 | [&] { wasChanged = m_addAlias(path, source, priority); }); |
| 237 | return wasChanged; |
| 238 | } |
| 239 | |
| 240 | bool ServerImpl::addAliases(Json::Value const &aliases, |
| 241 | common::AliasPriority priority) { |
nothing calls this directly
no outgoing calls
no test coverage detected