summaryrefslogtreecommitdiff
path: root/app/controllers/help_controller.rb
blob: 051cbdfaf054195badfecd3a5cdcdab50885edf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class HelpController < ApplicationController
  def index
  end

  def api
    @category = params[:category]
    @category = "README" if @category.blank?

    if File.exists?(Rails.root.join('doc', 'api', @category + '.md'))
      render 'api'
    else
      not_found!
    end
  end

  def shortcuts
  end
end