| 210 | } |
| 211 | |
| 212 | nlohmann::json Group::sendPutRequest(const std::string& subPath, const nlohmann::json& request, FileInfo fileInfo) |
| 213 | { |
| 214 | return state.getCommandAPI().PUTRequest("/groups/" + std::to_string(id) + subPath, request, std::move(fileInfo)); |
| 215 | } |
| 216 | |
| 217 | std::string Group::getRoomType() const |
| 218 | { |
nothing calls this directly
no test coverage detected