Reputation: 111000
In my Room model I have a field last_activity_at
I want to do something like
if last_activity_at is greater than 1 minute ago?
What's the right way in rails to do that? Thanks
Upvotes: 0
Views: 242
Reputation: 51717
How about this:
record.last_activity_at > 1.minute.ago
Upvotes: 3