def maxLeadTime()

in lambda/src/main/scala/pricemigrationengine/handlers/NotificationHandler.scala [285:292]


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