diff options
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/entries_controller.rb | 7 | ||||
-rw-r--r-- | app/controllers/records_controller.rb | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/app/controllers/entries_controller.rb b/app/controllers/entries_controller.rb new file mode 100644 index 0000000..89d06c0 --- /dev/null +++ b/app/controllers/entries_controller.rb | |||
@@ -0,0 +1,7 @@ | |||
1 | class EntriesController < ApplicationController | ||
2 | |||
3 | def show | ||
4 | @entry = Entry.where(directory: params[:directory], slug: params[:slug]).first | ||
5 | end | ||
6 | |||
7 | end | ||
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 @@ | |||
1 | class RecordsController < ApplicationController | ||
2 | |||
3 | def index | ||
4 | @records = Record.order(created_at: :desc).limit(20) | ||
5 | end | ||
6 | |||
7 | end | ||