Action Controller

class GuestbookController < ActionController::Base
  def index
    @entries = Entries.find_all
  end
end