summaryrefslogtreecommitdiff
path: root/app/controllers/help_controller.rb
blob: fc498559d6b25386467a85f08d8bc7711b2addd6 (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 show
    @category = params[:category]
    @file = params[:file]

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

  def shortcuts
  end
end