name: "Entry" panels { name: "HELLO" path: "Panels/Doors/entry_1" clue: "hello" answer: "hi" symbols: SUN } ports { name: "GREAT" path: "Components/Warps/worldport" } .com/thoughts/atom/app/controllers/records_controller.rb?h=master' type='application/atom+xml'/>
about summary refs log blame commit diff stats
path: root/app/controllers/records_controller.rb
blob: 200d63c81db0473d34a45a14a40aaa711ce2c5cd (plain) (tree)
1
2
3
4
5
6
7






                                                        
class RecordsController < ApplicationController

  def index
    @records = Record.order(created_at: :desc).limit(20)
  end

end