Files
flights/app/controllers/application_controller.rb

7 lines
107 B
Ruby

class ApplicationController < ActionController::Base
def hello
render html: "Hello World"
end
end