def getPathsById()

in path-manager/app/services/PathStore.scala [263:267]


  def getPathsById(id: Long) = {
    val pathItems = Dynamo.pathsTable.getIndex("id-index").query(new KeyAttribute("identifier", id)).asScala
    val paths = pathItems.map{ PathRecord(_) }
    paths.groupBy(_.`type`)
  }