Class: MongoidForums::Post

Inherits:
Object
  • Object
show all
Includes:
Mongoid::Document, Mongoid::Timestamps
Defined in:
app/models/mongoid_forums/post.rb

Class Method Summary collapse

Class Method Details

.by_created_atObject



22
23
24
# File 'app/models/mongoid_forums/post.rb', line 22

def by_created_at
  order_by([:created_at, :asc])
end

.by_updated_atObject



26
27
28
# File 'app/models/mongoid_forums/post.rb', line 26

def by_updated_at
  order_by([:updated_at, :desc])
end