Class: Plain::HomeController

Inherits:
ApplicationController show all
Defined in:
app/controllers/plain/home_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



4
5
6
7
8
# File 'app/controllers/plain/home_controller.rb', line 4

def index
  @conversations = Plain::Conversation
  .order(pinned: :desc, pinned_at: :asc, created_at: :desc)
  .limit(12)
end