6 lines
136 B
Ruby
Executable File
6 lines
136 B
Ruby
Executable File
class StaticController < ActionController::Base
|
|
def index
|
|
render file: "#{Rails.root}/public/index.html", layout: false
|
|
end
|
|
end
|