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