class Decidim::Meetings::MeetingMonthCell

def day_class(date)

def day_class(date)
  return "is-today" if date == Date.current
  return if events.exclude?(date)
  "is-#{date < Date.current ? "past" : "upcoming"}-event"
end