method

formatted_polymorphic_url

rails latest stable - Class: ActionController::PolymorphicRoutes

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

formatted_polymorphic_url(record_or_hash, options = {})
public

No documentation available.

# File actionpack/lib/action_controller/polymorphic_routes.rb, line 134
    def formatted_polymorphic_url(record_or_hash, options = {})
      ActiveSupport::Deprecation.warn("formatted_polymorphic_url has been deprecated. Please pass :format to the polymorphic_url method instead", caller)
      options[:format] = record_or_hash.pop if Array === record_or_hash
      polymorphic_url(record_or_hash, options)
    end