Flowdock
method

convert_direct_upload_option_to_url

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: ActionView::Helpers::FormTagHelper
convert_direct_upload_option_to_url(options) private

No documentation

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

Hide source
# File actionview/lib/action_view/helpers/form_tag_helper.rb, line 914
        def convert_direct_upload_option_to_url(options)
          if options.delete(:direct_upload) && respond_to?(:rails_direct_uploads_url)
            options["data-direct-upload-url"] = rails_direct_uploads_url
          end
          options
        end
Register or log in to add new notes.