Skip to content

Instantly share code, notes, and snippets.

@Neener54
Forked from anonymous/gist:5135758
Last active December 14, 2015 19:19
Show Gist options
  • Save Neener54/5135829 to your computer and use it in GitHub Desktop.
Save Neener54/5135829 to your computer and use it in GitHub Desktop.
@events = Event.where("venue_id = ?", current_user.venue.id).past_events
@events = Event.where("venue_id = ?", current_user.venue.id).upcoming_events
class Events
def past_events
past ||= self.select{|event| event.date < Date.today}
end
def upcoming_events
upcoming ||= self.select{|event| event.date >= Date.today}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment