Class: Plain::HomeController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Plain::HomeController
- Defined in:
- app/controllers/plain/home_controller.rb
Instance Method Summary collapse
Instance Method Details
#index ⇒ Object
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 |