about summary refs log tree commit diff stats
path: root/app/controllers/records_controller.rb
blob: 200d63c81db0473d34a45a14a40aaa711ce2c5cd (plain) (blame)
1
2
3
4
5
6
7
class RecordsController < ApplicationController

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

end