File size: 221 Bytes
def1299
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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