def getPathsById()

in path-manager/app/controllers/PathManagerController.scala [125:133]


  def getPathsById(id: Long) = Action {
    val paths = PathStore.getPathsById(id)
    PathLookups.increment
    if (paths.isEmpty) {
      NotFound
    } else {
      argoOk(Json.toJson(paths))
    }
  }