Class: Iron::HomeController

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

Instance Method Summary collapse

Instance Method Details

#showObject



3
4
5
6
# File 'app/controllers/iron/home_controller.rb', line 3

def show
  @content_types = ContentType.all
  @recent_entries = Entry.includes(:content_type, :creator).order(updated_at: :desc).limit(5)
end