def minLeadTime()

in lambda/src/main/scala/pricemigrationengine/handlers/NotificationHandler.scala [294:301]


  def minLeadTime(cohortSpec: CohortSpec): Int = {
    MigrationType(cohortSpec) match {
      case Newspaper2024     => newspaper2024Migration.StaticData.minLeadTime
      case GW2024            => GW2024Migration.minLeadTime
      case SupporterPlus2024 => SupporterPlus2024Migration.minLeadTime
      case Default           => 35
    }
  }