Method: Enki::Comment.find_recent
- Defined in:
- app/models/enki/comment.rb
.find_recent(options = {}) ⇒ Object
67 68 69 70 71 72 |
# File 'app/models/enki/comment.rb', line 67 def find_recent( = {}) find(:all, { :limit => DEFAULT_LIMIT, :order => 'created_at DESC' }.merge()) end |