private[models] def maxSupportingItems()

in fapi-client/src/main/scala/com/gu/facia/api/models/collection.scala [49:58]


  private[models] def maxSupportingItems(isSplashCard: Boolean, collectionType: String, boostLevel: String): Int = {
    if (
          (collectionType == "flexible/general" || collectionType == "flexible/special") &&
          !isSplashCard && boostLevel == BoostLevel.Default.label)
    {
       2
    } else {
      4
    }
  }