7 lines
107 B
Ruby
7 lines
107 B
Ruby
class ApplicationController < ActionController::Base
|
|
|
|
def hello
|
|
render html: "Hello World"
|
|
end
|
|
end
|