8 lines
147 B
Ruby
8 lines
147 B
Ruby
|
class ApplicationController < ActionController::Base
|
||
|
protect_from_forgery with::exception
|
||
|
|
||
|
def hello
|
||
|
render html:"Hello,World!"
|
||
|
end
|
||
|
end
|