Flowdock
method

content_type_from_legacy_post_data_format_header

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: ActionController::AbstractRequest
content_type_from_legacy_post_data_format_header() 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/request.rb, line 482
      def content_type_from_legacy_post_data_format_header
        if x_post_format = @env['HTTP_X_POST_DATA_FORMAT']
          case x_post_format.to_s.downcase
            when 'yaml';  'application/x-yaml'
            when 'xml';   'application/xml'
          end
        end
      end
Register or log in to add new notes.