def fullKey()

in src/main/scala/com/gu/liveappversions/S3Storage.scala [24:27]


  def fullKey(env: Env, partialKey: String): String = {
    val stagePrefix = if (env.stage == "PROD") "/" else s"/${env.stage}/"
    s"reserved-paths$stagePrefix$partialKey"
  }