From 1ecee185d978d7b8a9ade89d8dc840fa87656860 Mon Sep 17 00:00:00 2001 From: David Gay Date: Sat, 13 Apr 2024 20:05:14 -0400 Subject: home controller --- app/controllers/home_controller.rb | 4 ++++ app/views/home/index.html.erb | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 app/controllers/home_controller.rb create mode 100644 app/views/home/index.html.erb (limited to 'app') diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb new file mode 100644 index 0000000..95f2992 --- /dev/null +++ b/app/controllers/home_controller.rb @@ -0,0 +1,4 @@ +class HomeController < ApplicationController + def index + end +end diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb new file mode 100644 index 0000000..2085730 --- /dev/null +++ b/app/views/home/index.html.erb @@ -0,0 +1,2 @@ +

Home#index

+

Find me in app/views/home/index.html.erb

-- cgit v1.2.3