I am trying to create a validation to ensure one post per day, 24hrs starting from 00:00. How can this be done in Rails please?
I did the following but I am not sure whe
That error is because today is instance method of model, not a scope.
today
What you need is scope:
scope
scope :today, lambda{ where(:created_at => (Time.now.beginning_of_day..Time.now)) }