rubystudy/app/controllers/application_controller.rb

8 lines
148 B
Ruby
Raw Normal View History

2019-08-14 11:37:39 +08:00
class ApplicationController < ActionController::Base
2019-10-23 15:42:16 +08:00
protect_from_forgery #with::exception
2019-08-14 11:37:39 +08:00
def hello
render html:"Hello,World!"
end
end