def status()

in app/controllers/ExplainerReindexController.scala [54:60]


  def status(stack: String): Action[AnyContent] = ApiKeyAction { req =>
    stack match {
      case "preview" => displayResult(lastPreview)
      case "published" => displayResult(lastPublished)
      case x => BadRequest(s"$x is not a valid stack identifier")
    }
  }