def isValid()

in path-manager/app/services/PathStore.scala [16:20]


  def isValid(path: String): Boolean = {
    val matches = validPathRegex.pattern.matcher(path).matches()
    if (!matches) logger.warn(s"path fails validation [$path]")
    matches
  }