asciinema.org/app/controllers/docs_controller.rb

11 lines
221 B
Ruby
Raw Normal View History

2012-07-25 18:24:20 +00:00
class DocsController < ApplicationController
layout 'docs'
2014-07-05 18:16:57 +00:00
rescue_from ActionView::MissingTemplate, with: :handle_not_found
2012-07-25 18:24:20 +00:00
def show
@current_category = params[:page].to_sym
render params[:page]
end
end