Module: Commentable::Model::ClassMethods
- Defined in:
- lib/commentable/model.rb
Instance Method Summary collapse
Instance Method Details
#count_for_user_ip(user_ip, field) ⇒ Object
48 49 50 51 |
# File 'lib/commentable/model.rb', line 48 def count_for_user_ip(user_ip, field) where("user_ip = ? AND #{field} = ? AND created_at >= ?", user_ip, true, Time.now - quota_time).count end |