Judge0Tsting / app /controllers /home_controller.rb
AdityaSharmaTech's picture
Upload 177 files
def1299 verified
raw
history blame contribute delete
221 Bytes
class HomeController < ActionController::API
include ActionView::Layouts
def index
if Config::USE_DOCS_AS_HOMEPAGE
render file: Rails.root.join('public/docs.html')
else
head :ok
end
end
end