aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/test_sheet_controller.rb
blob: 5bc3374e21c557fab9c3d1a44c951ef58eb4d777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class TestSheetController < ApplicationController

  def show
    @page = TestSheetPage.find(slug)
    @toc = TestSheetPage.find("toc")
  end

  private

  def slug
    params[:slug] or "toc"
  end

end