about summary refs log tree commit diff stats
path: root/app/controllers/records_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/records_controller.rb')
-rw-r--r--app/controllers/records_controller.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/records_controller.rb b/app/controllers/records_controller.rb new file mode 100644 index 0000000..200d63c --- /dev/null +++ b/app/controllers/records_controller.rb
@@ -0,0 +1,7 @@
1class RecordsController < ApplicationController
2
3 def index
4 @records = Record.order(created_at: :desc).limit(20)
5 end
6
7end