method

initialize_template_class

Importance_0
v1.1.6 - Show latest stable - 0 notes - Class: ActionController::Base
initialize_template_class(response) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/base.rb, line 906 def initialize_template_class(response) raise "You must assign a template class through ActionController.template_class= before processing a request" unless @@template_class response.template = self.class.view_class.new(self.class.view_root, {}, self) response.redirected_to = nil @performed_render = @performed_redirect = false end
Register or log in to add new notes.