method
render_action
v1.0.0 -
Show latest stable
- Class:
ActionController::Base
render_action(action_name, status = nil, with_layout = true)protected
No documentation available.
# File actionpack/lib/action_controller/base.rb, line 643
def render_action(action_name, status = nil, with_layout = true)
if with_layout
render_with_layout(default_template_name(action_name), status)
else
render_with_no_layout(default_template_name(action_name), status)
end
end 1Note
See #render for "new" syntax
See: render