How can I grab a User's points for a single day (i.e. 'Today' or 'Yesterday') using the Merit gem?
I tried:
current_user.points.where("created_at >= ?", Time.zone.now.beginning_of_day)
but that doesn't work.
How can I grab a User's points for a single day (i.e. 'Today' or 'Yesterday') using the Merit gem?
I tried:
current_user.points.where("created_at >= ?", Time.zone.now.beginning_of_day)
but that doesn't work.
There's a models diagram for merit in https://github.com/tute/merit/wiki/General-merit-workflow. With that in mind, lines like this makes it work: