aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/abstract/layouts.rb
blob: c6b99a6d45da44a228505c901b4c44ed0a56a2ae (plain) (blame)
1
2
3
4
5
6
7
module AbstractController
  module Layouts
    def _render_template(template, options)
      _action_view._render_template_with_layout(template, options[:_layout])
    end
  end
end