Flowdock
method

template_exists?

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: ActionController::Base
template_exists?(template_name = default_template_name) 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 1312
      def template_exists?(template_name = default_template_name)
        @template.send(:_pick_template, template_name) ? true : false
      rescue ActionView::MissingTemplate
        false
      end
Register or log in to add new notes.