aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/welcome_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/welcome_controller.rb')
-rw-r--r--railties/lib/rails/welcome_controller.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/railties/lib/rails/welcome_controller.rb b/railties/lib/rails/welcome_controller.rb
new file mode 100644
index 0000000000..5b84b57679
--- /dev/null
+++ b/railties/lib/rails/welcome_controller.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+require "rails/application_controller"
+
+class Rails::WelcomeController < Rails::ApplicationController # :nodoc:
+ layout false
+
+ def index
+ end
+end