#アクション名とアプリケーションネームは同じ名前にする
していないとプレビューで
The action 'hello' could not be found for ApplicationController
と表示される。
application_controller.rb
class ApplicationController < ActionController::Base
def hello #ここ
render html: "hello, world!"
end
end
routes.rb
Rails.application.routes.draw do
# For details on the DSL available within this file,
# see https://guides.rubyonrails.org/routing.html
root 'application#hello' #ここ
end
これによってapplication_controllerのhelloアクションにルーティングされる。