Files
rails-solicitudes/app/controllers/static_controller.rb
2026-04-06 22:13:54 +00:00

6 lines
136 B
Ruby
Executable File

class StaticController < ActionController::Base
def index
render file: "#{Rails.root}/public/index.html", layout: false
end
end