apostrophecms / apostrophe-events

10 stars 5 forks source link

"Upcoming" should still show events in progress #17

Closed boutell closed 8 years ago

boutell commented 8 years ago

This logic:

        cursor.and({
          start: { $gte: new Date() }
        });        

Will drop events that already started even if they last a week.

I suggest:

cursor.and({ end: { $lte: new Date() } })