diff options
Diffstat (limited to 'guides/code/getting_started/app/controllers/home_controller.rb')
-rw-r--r-- | guides/code/getting_started/app/controllers/home_controller.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/guides/code/getting_started/app/controllers/home_controller.rb b/guides/code/getting_started/app/controllers/home_controller.rb new file mode 100644 index 0000000000..309b70441e --- /dev/null +++ b/guides/code/getting_started/app/controllers/home_controller.rb @@ -0,0 +1,5 @@ +class WelcomeController < ApplicationController + def index + end + +end |